Anonymous Listener ExampleModify the MultiListener.java example in the Event section to use anonymous inner class for button2. ...
// button2.addActionListener(new Eavesdropper(bottomTextArea));
button2.addActionListener(new ActionListener() {
... // put your code here
});
...
/* comment out the Eaveadropper class
class Eavesdropper implements ActionListener {
....
}
*/ |