All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jclass.bwt.JCListAdapter

java.lang.Object
   |
   +----jclass.bwt.JCListAdapter

public abstract class JCListAdapter
extends Object
implements JCListListener
The adapter which receives JCList events. The methods in this class are empty; this class is provided as a convenience for easily creating listeners by extending this class and overriding only the methods of interest.

See Also:
JCListEvent

Constructor Index

 o JCListAdapter()

Method Index

 o itemStateChanged(JCItemEvent)
Invoked when an item's state has been changed.
 o listItemSelectBegin(JCListEvent)
Invoked before an item is selected.
 o listItemSelectEnd(JCListEvent)
Invoked after an item is selected.

Constructors

 o JCListAdapter
 public JCListAdapter()

Methods

 o listItemSelectBegin
 public void listItemSelectBegin(JCListEvent e)
Invoked before an item is selected. The event's values can be modified via its setXXX methods.

 o listItemSelectEnd
 public void listItemSelectEnd(JCListEvent e)
Invoked after an item is selected. Any changes made to the event are ignored.


All Packages  Class Hierarchy  This Package  Previous  Next  Index