Package org.eclipse.swt.custom
Class MovementEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.eclipse.swt.events.TypedEvent
-
- org.eclipse.swt.custom.MovementEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class MovementEvent extends TypedEvent
This event is sent when a new offset is required based on the current offset and a movement type.- Since:
- 3.3
- See Also:
- Sample code and further information, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description int
lineOffset
line start offset (input)java.lang.String
lineText
line text (input)int
movement
the movement type (input)int
newOffset
the new offset (input, output)int
offset
the current offset (input)-
Fields inherited from class org.eclipse.swt.events.TypedEvent
data, display, time, widget
-
-
Constructor Summary
Constructors Constructor Description MovementEvent(org.eclipse.swt.custom.StyledTextEvent e)
Constructs a new instance of this class based on the information in the given event.
-
Method Summary
-
Methods inherited from class org.eclipse.swt.events.TypedEvent
toString
-
-
-
-
Field Detail
-
lineOffset
public int lineOffset
line start offset (input)
-
lineText
public java.lang.String lineText
line text (input)
-
offset
public int offset
the current offset (input)
-
newOffset
public int newOffset
the new offset (input, output)
-
movement
public int movement
the movement type (input)
-
-