Tags: activemenutester, applet, bingtjavac, compile, deprecation, details, following, helloi, java, javanote, jdk1, menu, messagec, recompile
Recompile with -deprecation for details
On Java Studio » Java Talk
637 words with 1 Comments; publish: Wed, 19 Sep 2007 10:12:00 GMT; (15093.75, « »)
Hello
I have tried to compile an applet (menu), but get the following message:
C:\jdk1.3.1\bin>javac ActiveMenuTester.java
Note: ActiveMenuTester.java uses or overrides a deprecated API.
Note: Recompile with -deprecation for details.
How am I able to recompile the file as suggested in the DOS message above?
Thank you.
http://java-studio.developerfaqs.com/q_java-newer_83456.html
All Comments
Leave a comment...
- 1 Comments

- Just like it saysjavac ActiveMenuTester.java -deprecation Your applet will run anyway, see if a class file was generated, ActiveMenuTester.class. Deprecated just means some of the methods you have used may sometime in the future be removed from java. #1; Mon, 09 Jul 2007 00:21:00 GMT