Gostaria de saber onde encontro a documentações das classes Java, pois preciso saber quais são os métodos equivalentes a alguns que são "Deprecated".
A documentação (da versão atual do J2SE) você encontra em:
http://java.sun.com/j2se/1.4.1/docs/api/index.html
Quanto aos métodos deprecated, a documentação de cada método indica a alternativa. Por exemplo, em Date.getDate() (http://java.sun.com/j2se/1.4.1/docs/api/java/util/Date.html#getDate()):
getDate
public int getDate()
- Deprecated. As of JDK version 1.1, replaced by
Calendar.get(Calendar.DAY_OF_MONTH). - Returns the day of the month represented by this Date
object. The value returned is between
1and31representing the day of the month that contains or begins with the instant in time represented by this Date object, as interpreted in the local time zone. -
- Returns:
- the day of the month represented by this date.
- See Also:
Calendar
Felipe
------------------------------ LISTA SOUJAVA ---------------------------- http://www.soujava.org.br - Sociedade de Usu�rios Java da Sucesu-SP d�vidas mais comuns: http://www.soujava.org.br/faq.htm regras da lista: http://www.soujava.org.br/regras.htm historico: http://www.mail-archive.com/java-list%40soujava.org.br para sair da lista: envie email para [EMAIL PROTECTED] -------------------------------------------------------------------------
