Package org.eclipse.swt.custom
Class ExtendedModifyEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.eclipse.swt.events.TypedEvent
-
- org.eclipse.swt.custom.ExtendedModifyEvent
-
- All Implemented Interfaces:
Serializable
public final class ExtendedModifyEvent extends TypedEvent
This event is sent after a text change occurs.
-
-
Field Summary
Fields Modifier and Type Field Description intlengthlength of the new textStringreplacedTextreplaced text or empty string if no text was replacedintstartstart offset of the new text-
Fields inherited from class org.eclipse.swt.events.TypedEvent
data, display, time, widget
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ExtendedModifyEvent(org.eclipse.swt.custom.StyledTextEvent e)Constructs a new instance of this class based on the information in the given event.
-
-
-
Field Detail
-
start
public int start
start offset of the new text
-
length
public int length
length of the new text
-
replacedText
public String replacedText
replaced text or empty string if no text was replaced
-
-