File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Developer Certification (SCJD/OCMJD) and the fly likes which is the best way for event handling Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Developer Certification (SCJD/OCMJD)
Reply Bookmark "which is the best way for event handling" Watch "which is the best way for event handling" New topic
Author

which is the best way for event handling

Garry Kalra
Ranch Hand

Joined: May 25, 2001
Posts: 111
I am facing a difficult situation.
Suppose here is my class
class Test {
Test() {
JButton b = new JButton("Hi");
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
.....
}
});
JButton h = new JButton("Hello");
h.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
.....
}
});
}
public static void main(String args[]) {
Test t = new Test();
}
}
The above code creates a large no. of class files as separate
ActionListener are created.
class Test implements ActionListener {
JButton b = new JButton("Hi");
JButton h = new JButton("Hello");
Test() {
b.addActionListener(this);
h.addActionListener(this);
}
public static void main(String args[]) {
Test t = new Test();
}
public void actionPerformed(ActionEvent ae) {
if (ae.getSource() == b) {
...
}
else if (ae.getSource() == h) {
...
}
.....
}
}
The above code doesn't creates any extra class files.
Can anyone pls guide which approach is acceptable and is considered a
good.
Also the following thing is bugging me :-
should i use the following:-
Because we are supposed to use swing components, what kind of event
handling should be provided. The above is AWT event handling which is
at the core. I also heard that Action interfaces can be implemented.
Any help will be greatly appreciated.
Gaurav Kalra
Shailendra Guggali
Ranch Hand

Joined: Feb 01, 2001
Posts: 86
Ideally use the second approach but with MVC - i.e., let the action events be generated at the View and be passed to the controller to perform further actions(methods)
Garry Kalra
Ranch Hand

Joined: May 25, 2001
Posts: 111
How do you that controller sort of event handling.
Gaurav
 
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.
 
subject: which is the best way for event handling
 
Similar Threads
Peter Den Haan Pls help regarding event handling
Events
problems w/ JCheckBox's and TableModel
wats the prob?
Selecting text