login page and -Xlint message on compilation

i have a login page which ought to call up another page once the password entered corresponds with the data on the table in the database.

I tried to compile the code in the file Enter.java and i got the following message on the command prompt:

NOTE: Enter.java uses or overrides a deprecated API.

NOTE: Recompile with -Xlint:deprecation for details.

WHAT DOES IT MEAN TO RECOMPILE WITH -Xlint?

Any idea what this is about and how to circumvent it?

[484 byte] By [bakesa] at [2007-11-27 9:03:03]
# 1
that's means that you've used a deprecated method in your java code.recompile your code as the following:javac -Xlint MyClass.javaSee http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/javac.html for more information
java_2006a at 2007-7-12 21:34:36 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...