All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jclass.bwt.JCSpinBoxAdapter

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

public abstract class JCSpinBoxAdapter
extends Object
implements JCSpinBoxListener
The adapter which receives JCSpinBox 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:
JCSpinBoxEvent

Constructor Index

 o JCSpinBoxAdapter()

Method Index

 o spinBoxChangeBegin(JCSpinBoxEvent)
Invoked before the field's value is changed.
 o spinBoxChangeEnd(JCSpinBoxEvent)
Invoked after the field's value is changed.

Constructors

 o JCSpinBoxAdapter
 public JCSpinBoxAdapter()

Methods

 o spinBoxChangeBegin
 public void spinBoxChangeBegin(JCSpinBoxEvent e)
Invoked before the field's value is changed. The event's values can be modified via its setXXX methods.

 o spinBoxChangeEnd
 public void spinBoxChangeEnd(JCSpinBoxEvent e)
Invoked after the field's value is changed. Any changes made to the event are ignored.


All Packages  Class Hierarchy  This Package  Previous  Next  Index