Package org.eclipse.swt.custom
Class TextChangingEvent
java.lang.Object
java.util.EventObject
org.eclipse.swt.events.TypedEvent
org.eclipse.swt.custom.TextChangingEvent
- All Implemented Interfaces:
Serializable
This event is sent by the StyledTextContent implementor when a change
to the text is about to occur.
-
Field Summary
Modifier and TypeFieldDescriptionint
Length of text that is going to be insertedint
Number of new lines that are going to be insertedText that is going to be inserted or empty string if no text will be insertedint
Length of text that is going to be replacedint
Number of lines that are going to be replacedint
Start offset of the text that is going to be replacedFields inherited from class org.eclipse.swt.events.TypedEvent
data, display, time, widget
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionTextChangingEvent
(StyledTextContent source) Create the TextChangedEvent to be used by the StyledTextContent implementor. -
Method Summary
Methods inherited from class org.eclipse.swt.events.TypedEvent
toString
Methods inherited from class java.util.EventObject
getSource
-
Field Details
-
start
public int startStart offset of the text that is going to be replaced -
newText
Text that is going to be inserted or empty string if no text will be inserted -
replaceCharCount
public int replaceCharCountLength of text that is going to be replaced -
newCharCount
public int newCharCountLength of text that is going to be inserted -
replaceLineCount
public int replaceLineCountNumber of lines that are going to be replaced -
newLineCount
public int newLineCountNumber of new lines that are going to be inserted
-
-
Constructor Details
-
TextChangingEvent
Create the TextChangedEvent to be used by the StyledTextContent implementor.- Parameters:
source
- the object that will be sending the new TextChangingEvent, cannot be null
-