com.lamatek.event
Class ListSelectionAdapter

java.lang.Object
  extended by com.lamatek.event.ListSelectionAdapter
All Implemented Interfaces:
java.util.EventListener, javax.swing.event.ListSelectionListener

public class ListSelectionAdapter
extends java.lang.Object
implements javax.swing.event.ListSelectionListener

A simple null implementation of the javax.swing.event.ListSelectionListener interface for use as an anonymous inner class.


Constructor Summary
ListSelectionAdapter()
           
 
Method Summary
 void valueChanged(javax.swing.event.ListSelectionEvent e)
          Called when the registered List item has a selection made.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListSelectionAdapter

public ListSelectionAdapter()
Method Detail

valueChanged

public void valueChanged(javax.swing.event.ListSelectionEvent e)
Called when the registered List item has a selection made. This is a null implementation and all subclasses of ListSelectionAdapter should override this method.

Specified by:
valueChanged in interface javax.swing.event.ListSelectionListener
Parameters:
e - The ListSelectionEvent registered.