Click here to Skip to main content
15,914,452 members
Home / Discussions / Java
   

Java

 
GeneralRe: Problem with JRadionButton are all selected if clicked one by one Pin
flashery20-Sep-11 18:16
flashery20-Sep-11 18:16 
GeneralRe: Problem with JRadionButton are all selected if clicked one by one Pin
Firo Atrum Ventus20-Sep-11 18:53
Firo Atrum Ventus20-Sep-11 18:53 
QuestionJava Pin
Bitewell17-Sep-11 2:03
Bitewell17-Sep-11 2:03 
AnswerRe: Java Pin
Richard MacCutchan17-Sep-11 3:05
mveRichard MacCutchan17-Sep-11 3:05 
AnswerRe: Java Pin
srikanth venkatesh30-Sep-11 4:21
srikanth venkatesh30-Sep-11 4:21 
Questionhow to compile with -Xlint in netbeans Pin
flashery16-Sep-11 5:07
flashery16-Sep-11 5:07 
AnswerRe: how to compile with -Xlint in netbeans Pin
Richard MacCutchan16-Sep-11 5:22
mveRichard MacCutchan16-Sep-11 5:22 
AnswerRe: how to compile with -Xlint in netbeans Pin
flashery16-Sep-11 16:45
flashery16-Sep-11 16:45 
Thanks Richard MacCutchan it really helps me.

For those who don't know here's the details

It's just for NetBeans IDE 7.0.1 I don't know how to do it on other IDE.

1. Right click on your project you can see it on the left side of the IDE project tab and select properties.

2. In the project property window just click compiling on the left side of the window.

3. Find this option after clicking the compiling "Additional Compiling Options:" it is located on the lowest side and add your compiling option in my case I add this on the textbox.

Java
-Xlint:deprecation 


4. Click OK and your done.

5. Try debugging your project and your will see a message like this on the output option of debugging.

Java
C:\Users\flashery\Documents\NetBeansProjects\Timer\src\MainTimer.java:93: warning: [deprecation] disable() in javax.swing.JComponent has been deprecated
        cmbTime.disable();
C:\Users\flashery\Documents\NetBeansProjects\Timer\src\MainTimer.java:190: warning: [deprecation] disable() in javax.swing.JComponent has been deprecated
            cmbTime.disable();
C:\Users\flashery\Documents\NetBeansProjects\Timer\src\MainTimer.java:206: warning: [deprecation] enable() in javax.swing.JComponent has been deprecated
            cmbTime.enable();


Hope this helps. I really google it and there's no detailed info on how to do it. I am thankful to Richard MacCutchan for saying its on the project option.
QuestionNeed suggestions for making a native DLL easily callable from Java Pin
Gary Wheeler15-Sep-11 7:46
Gary Wheeler15-Sep-11 7:46 
AnswerRe: Need suggestions for making a native DLL easily callable from Java Pin
Nagy Vilmos15-Sep-11 23:24
professionalNagy Vilmos15-Sep-11 23:24 
GeneralRe: Need suggestions for making a native DLL easily callable from Java Pin
Gary Wheeler16-Sep-11 0:16
Gary Wheeler16-Sep-11 0:16 
GeneralRe: Need suggestions for making a native DLL easily callable from Java Pin
Richard MacCutchan16-Sep-11 1:36
mveRichard MacCutchan16-Sep-11 1:36 
GeneralRe: Need suggestions for making a native DLL easily callable from Java Pin
Gary Wheeler16-Sep-11 1:42
Gary Wheeler16-Sep-11 1:42 
GeneralRe: Need suggestions for making a native DLL easily callable from Java Pin
Richard MacCutchan16-Sep-11 2:23
mveRichard MacCutchan16-Sep-11 2:23 
GeneralRe: Need suggestions for making a native DLL easily callable from Java Pin
Gary Wheeler16-Sep-11 2:40
Gary Wheeler16-Sep-11 2:40 
GeneralRe: Need suggestions for making a native DLL easily callable from Java Pin
Richard MacCutchan16-Sep-11 5:18
mveRichard MacCutchan16-Sep-11 5:18 
QuestionMain method Pin
Sarika G Shinde14-Sep-11 2:57
Sarika G Shinde14-Sep-11 2:57 
AnswerRe: Main method Pin
Richard MacCutchan14-Sep-11 3:39
mveRichard MacCutchan14-Sep-11 3:39 
GeneralRe: Main method Pin
Nagy Vilmos14-Sep-11 4:34
professionalNagy Vilmos14-Sep-11 4:34 
GeneralRe: Main method Pin
Richard MacCutchan14-Sep-11 4:43
mveRichard MacCutchan14-Sep-11 4:43 
GeneralRe: Main method Pin
jschell14-Sep-11 13:39
jschell14-Sep-11 13:39 
GeneralRe: Main method Pin
Richard MacCutchan14-Sep-11 22:29
mveRichard MacCutchan14-Sep-11 22:29 
GeneralRe: Main method Pin
jschell15-Sep-11 10:47
jschell15-Sep-11 10:47 
GeneralRe: Main method Pin
Richard MacCutchan15-Sep-11 22:20
mveRichard MacCutchan15-Sep-11 22:20 
GeneralRe: Main method Pin
jschell17-Sep-11 14:46
jschell17-Sep-11 14:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.