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
-
JCListAdapter()
-
-
itemStateChanged(JCItemEvent)
- Invoked when an item's state has been changed.
-
listItemSelectBegin(JCListEvent)
- Invoked before an item is selected.
-
listItemSelectEnd(JCListEvent)
- Invoked after an item is selected.
JCListAdapter
public JCListAdapter()
listItemSelectBegin
public void listItemSelectBegin(JCListEvent e)
- Invoked before an item is selected. The event's values can be modified
via its setXXX methods.
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