Click here to Skip to main content
15,898,538 members
Home / Discussions / Java
   

Java

 
QuestionLogin process Always false..cannot find the error Pin
mali_angel3-Jul-13 17:22
mali_angel3-Jul-13 17:22 
AnswerRe: Login process Always false..cannot find the error Pin
mali_angel3-Jul-13 17:28
mali_angel3-Jul-13 17:28 
AnswerRe: Login process Always false..cannot find the error Pin
Shubhashish_Mandal3-Jul-13 19:40
professionalShubhashish_Mandal3-Jul-13 19:40 
GeneralRe: Login process Always false..cannot find the error Pin
mali_angel3-Jul-13 19:51
mali_angel3-Jul-13 19:51 
GeneralRe: Login process Always false..cannot find the error Pin
Shubhashish_Mandal3-Jul-13 19:54
professionalShubhashish_Mandal3-Jul-13 19:54 
QuestionactionPerformed in another class Pin
chdboy1-Jul-13 19:27
chdboy1-Jul-13 19:27 
SuggestionRe: actionPerformed in another class Pin
Richard MacCutchan1-Jul-13 20:46
mveRichard MacCutchan1-Jul-13 20:46 
AnswerRe: actionPerformed in another class Pin
Shubhashish_Mandal3-Jul-13 19:48
professionalShubhashish_Mandal3-Jul-13 19:48 
You can only register an event handler to an event source. So your first class is an event handler. And there fore you can use this to any of the event source which trigger that event. Something like this.
Java
class Handler implements ActionPerformed{

   public void actionPerformed(ActionEvent e) {}
   }
}
class Source {
   p s v main(){
     JButton bt = new Jbutton("Ok");
      bt.addActionListener(new Handler());
   }
}

Regards
Shubhashish

Questionwhy java in linux has outstanding performance even jvm slow it down? Pin
crunchor28-Jun-13 17:55
crunchor28-Jun-13 17:55 
AnswerRe: why java in linux has outstanding performance even jvm slow it down? Pin
Richard MacCutchan28-Jun-13 23:19
mveRichard MacCutchan28-Jun-13 23:19 
GeneralRe: why java in linux has outstanding performance even jvm slow it down? Pin
crunchor28-Jun-13 23:22
crunchor28-Jun-13 23:22 
AnswerRe: why java in linux has outstanding performance even jvm slow it down? Pin
NotPolitcallyCorrect29-Jun-13 0:51
NotPolitcallyCorrect29-Jun-13 0:51 
QuestionMessage Closed Pin
27-Jun-13 17:11
crunchor27-Jun-13 17:11 
AnswerRe: official "forum" in oracle really screw up Pin
Richard MacCutchan27-Jun-13 21:23
mveRichard MacCutchan27-Jun-13 21:23 
GeneralRe: official "forum" in oracle really screw up Pin
crunchor27-Jun-13 21:40
crunchor27-Jun-13 21:40 
GeneralRe: official "forum" in oracle really screw up Pin
Richard MacCutchan27-Jun-13 22:33
mveRichard MacCutchan27-Jun-13 22:33 
GeneralRe: official "forum" in oracle really screw up Pin
Pete O'Hanlon27-Jun-13 22:59
mvePete O'Hanlon27-Jun-13 22:59 
GeneralRe: official "forum" in oracle really screw up Pin
Richard MacCutchan27-Jun-13 23:40
mveRichard MacCutchan27-Jun-13 23:40 
GeneralRe: official "forum" in oracle really screw up Pin
crunchor27-Jun-13 23:00
crunchor27-Jun-13 23:00 
AnswerRe: official "forum" in oracle really screw up Pin
jschell28-Jun-13 13:48
jschell28-Jun-13 13:48 
Questionjava media player with Java Media Frmework Pin
Md Shariful Islam Saful26-Jun-13 7:48
Md Shariful Islam Saful26-Jun-13 7:48 
AnswerRe: java media player with Java Media Frmework Pin
dusty_dex26-Jun-13 9:27
dusty_dex26-Jun-13 9:27 
GeneralRe: java media player with Java Media Frmework Pin
Md Shariful Islam Saful26-Jun-13 10:00
Md Shariful Islam Saful26-Jun-13 10:00 
AnswerRe: java media player with Java Media Frmework Pin
Shubhashish_Mandal3-Jul-13 19:59
professionalShubhashish_Mandal3-Jul-13 19:59 
AnswerRe: java media player with Java Media Frmework Pin
MarlBermudoNights3-Jul-13 22:22
professionalMarlBermudoNights3-Jul-13 22:22 

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.