com.lamatek.event
Class ActionAdapter

java.lang.Object
  extended by com.lamatek.event.ActionAdapter
All Implemented Interfaces:
java.awt.event.ActionListener, java.util.EventListener

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

A simple class that provides an empty implementation of the java.awt.ActionListener interface. For use as an anonymous inner class.


Constructor Summary
ActionAdapter()
           
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          Called when a java.awt.ActionEvent occurs onthe registered component.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActionAdapter

public ActionAdapter()
Method Detail

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
Called when a java.awt.ActionEvent occurs onthe registered component. This is an empty implementation and all subclasses of ActionAdapter should override this method.

Specified by:
actionPerformed in interface java.awt.event.ActionListener