Interface and Description |
---|
java.security.Certificate
A new certificate handling package is created in the Java 2 platform.
This Certificate interface is entirely deprecated and
is here to allow for a smooth transition to the new
package.
|
Class and Description |
---|
java.security.Identity
This class is no longer used. Its functionality has been
replaced by
java.security.KeyStore , the
java.security.cert package, and
java.security.Principal . |
java.security.IdentityScope
This class is no longer used. Its functionality has been
replaced by
java.security.KeyStore , the
java.security.cert package, and
java.security.Principal . |
java.security.Signer
This class is no longer used. Its functionality has been
replaced by
java.security.KeyStore , the
java.security.cert package, and
java.security.Principal . |
Field and Description |
---|
org.apache.log4j.Priority.DEBUG
Use
Level.DEBUG instead. |
org.apache.log4j.Priority.ERROR
Use
Level.ERROR instead. |
org.apache.log4j.Priority.FATAL
Use
Level.FATAL instead. |
org.apache.log4j.Priority.INFO
Use
Level.INFO instead. |
org.apache.log4j.spi.Filter.next
As of 1.2.12, use
Filter.getNext() and Filter.setNext(org.apache.log4j.spi.Filter) instead |
org.havi.ui.event.HRcEvent.RC_FIRST
The value of this field is useless, since it mixes
event ids and key codes. It does not reflect any of the
remote control key codes listed in this class.
|
org.havi.ui.event.HRcEvent.RC_LAST |
org.havi.ui.HVisible.TEXT_VALUE_CHANGE
This constant shall not be used for the hinting
mechanism. Looks shall treat it as
HVisible.UNKNOWN_CHANGE .
See also HVisible.CARET_POSITION_CHANGE and HVisible.TEXT_CONTENT_CHANGE . |
org.apache.log4j.Priority.WARN
Use
Level.WARN instead. |
Method and Description |
---|
java.awt.CardLayout.addLayoutComponent(String, Component)
replaced by
addLayoutComponent(Component, Object) . |
java.awt.BorderLayout.addLayoutComponent(String, Component)
replaced by
addLayoutComponent(Component, Object) . |
java.lang.SecurityManager.checkMulticast(InetAddress, byte)
Use #checkPermission(java.security.Permission) instead
|
java.net.URLDecoder.decode(String)
The resulting string may vary depending on the platform's
default encoding. Instead, use the decode(String,String) method
to specify the encoding.
|
java.net.URLEncoder.encode(String)
The resulting string may vary depending on the platform's
default encoding. Instead, use the encode(String,String)
method to specify the encoding.
|
org.apache.log4j.Category.exists(String)
Please use
LogManager.exists(java.lang.String) instead. |
org.apache.log4j.Priority.getAllPossiblePriorities()
This method will be removed with no replacement.
|
org.apache.log4j.Category.getChainedPriority()
Please use the the
Category.getEffectiveLevel() method
instead. |
org.apache.log4j.Hierarchy.getCurrentCategories()
Please use
Hierarchy.getCurrentLoggers() instead. |
org.apache.log4j.Category.getCurrentCategories()
Please use
LogManager.getCurrentLoggers() instead. |
org.apache.log4j.Category.getDefaultHierarchy()
Please use
LogManager.getLoggerRepository() instead. |
java.awt.Toolkit.getFontList() |
java.awt.Toolkit.getFontMetrics(Font)
Deprecated. This returns integer metrics for
the default screen.
|
org.apache.log4j.Category.getHierarchy()
Please use
Category.getLoggerRepository() instead. |
org.apache.log4j.Category.getInstance(Class)
Please make sure to use
Logger.getLogger(Class) instead. |
org.apache.log4j.Category.getInstance(String)
Make sure to use
Logger.getLogger(String) instead. |
org.apache.log4j.Category.getPriority()
Please use
Category.getLevel() instead. |
org.apache.log4j.Category.getRoot()
Please use
Logger.getRootLogger() instead. |
java.awt.Component.isFocusTraversable()
As of 1.4, replaced by
isFocusable() . |
org.apache.log4j.Hierarchy.overrideAsNeeded(String)
Deprecated with no replacement.
|
java.io.ObjectInputStream.readLine()
This method does not properly convert bytes to characters.
see DataInputStream for the details and alternatives.
|
java.io.DataInputStream.readLine()
This method does not properly convert bytes to characters.
As of JDK 1.1, the preferred way to read lines of text is via the
BufferedReader.readLine() method. Programs that use the
DataInputStream class to read lines can be converted to use
the BufferedReader class by replacing code of the form:
with:DataInputStream d = new DataInputStream(in); BufferedReader d = new BufferedReader(new InputStreamReader(in)); |
java.util.Properties.save(OutputStream, String)
This method does not throw an IOException if an I/O error
occurs while saving the property list. As of the Java 2 platform v1.2, the preferred
way to save a properties list is via the
store(OutputStream out,
String header) method. |
java.net.MulticastSocket.send(DatagramPacket, byte)
Use the following code or its equivalent instead:
......
int ttl = mcastSocket.getTimeToLive();
mcastSocket.setTimeToLive(newttl);
mcastSocket.send(p);
mcastSocket.setTimeToLive(ttl);
......
|
org.apache.log4j.Hierarchy.setDisableOverride(String)
Deprecated with no replacement.
|
org.apache.log4j.Category.setPriority(Priority)
Please use
Category.setLevel(org.apache.log4j.Level) instead. |
org.apache.log4j.Category.shutdown()
Please use
LogManager.shutdown() instead. |
org.apache.log4j.Priority.toPriority(int)
Please use the
Level.toLevel(int) method instead. |
org.apache.log4j.Priority.toPriority(int, Priority)
Please use the
Level.toLevel(int, Level) method instead. |
org.apache.log4j.Priority.toPriority(String)
Please use the
Level.toLevel(String) method instead. |
org.apache.log4j.Priority.toPriority(String, Priority)
Please use the
Level.toLevel(String, Level) method instead. |
Copyright © 2012 CableLabs. All Rights Reserved.