Class ButtonListener

java.lang.Object
  |
  +--ButtonListener
All Implemented Interfaces:
java.awt.event.ActionListener, java.util.EventListener

public class ButtonListener
extends java.lang.Object
implements java.awt.event.ActionListener

ButtonListener reacts to clicks on the sample button. CSE 143 Sp03 demo.

Version:
4/17/03
Author:
Hal Perkins

Constructor Summary
ButtonListener()
           
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          Respond to events generated by the button.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ButtonListener

public ButtonListener()
Method Detail

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
Respond to events generated by the button.

Specified by:
actionPerformed in interface java.awt.event.ActionListener
Parameters:
e - the event created by the button when it was clicked.


Generated by BlueJ