All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jclass.bwt.JCTextCursorAdapter

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

public abstract class JCTextCursorAdapter
extends Object
implements JCTextCursorListener
The adapter which receives JCTextCursor 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:
JCTextCursorEvent

Constructor Index

 o JCTextCursorAdapter()

Method Index

 o textCursorMoveBegin(JCTextCursorEvent)
Invoked before the field's cursor is moved.
 o textCursorMoveEnd(JCTextCursorEvent)
Invoked after the field's cursor is moved.

Constructors

 o JCTextCursorAdapter
 public JCTextCursorAdapter()

Methods

 o textCursorMoveBegin
 public void textCursorMoveBegin(JCTextCursorEvent e)
Invoked before the field's cursor is moved. The event's values can be modified via its setXXX methods.

 o textCursorMoveEnd
 public void textCursorMoveEnd(JCTextCursorEvent e)
Invoked after the field's cursor is moved. Any changes made to the event are ignored.


All Packages  Class Hierarchy  This Package  Previous  Next  Index