All Packages Class Hierarchy This Package Previous Next Index
Class jclass.bwt.JCTextAdapter
java.lang.Object
|
+----jclass.bwt.JCTextAdapter
- public abstract class JCTextAdapter
- extends Object
- implements JCTextListener
The adapter which receives JCText 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:
- JCTextEvent
-
JCTextAdapter()
-
-
textValueChangeBegin(JCTextEvent)
- Invoked before the field's value is changed.
-
textValueChangeEnd(JCTextEvent)
- Invoked after the field's value is changed.
JCTextAdapter
public JCTextAdapter()
textValueChangeBegin
public void textValueChangeBegin(JCTextEvent e)
- Invoked before the field's value is changed.
The event's values can be modified via its setXXX methods.
textValueChangeEnd
public void textValueChangeEnd(JCTextEvent 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