Can actionPerfomed method be called directly? also can any user-defined object use addActionListener to get an event listener? Thank you.
Manfred Leonhardt
Ranch Hand
Joined: Jan 09, 2001
Posts: 1492
posted
0
Hi Tom, It depends on how you defined your actionPerformed. If you used an anonymous class you are out of luck. If you just have an actionPerformed method in your class that uses a switch statement or if/then to figure out which source called it then you can go ahead and call it after you create an ActionEvent object containing useful information. If you used Anonymous classes you will need to perform something like the following.
To use addActionListener, the user-defined object will need to subclass an AWT class that defines it. Otherwise you will need to define it yourself. Your user-defined object will have to be subclass in AWT or you are really wasting your time! Regards, Manfred.
tom nugent
Ranch Hand
Joined: Dec 20, 2000
Posts: 32
posted
0
Thank you, Manfred. You answered my questions.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.