java.lang.Object
org.gjt.sp.jedit.EBMessage
org.gjt.sp.jedit.msg.EditPaneUpdate
- Direct Known Subclasses:
PositionChanging
Message sent when an edit pane-related change occurs.
- Since:
- jEdit 2.5pre1
- Version:
- $Id: EditPaneUpdate.java 25221 2020-04-12 16:00:17Z kpouer $
- Author:
- Slava Pestov
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Object
The current buffer in the EditPane has changed to show a different buffer.static final Object
Edit pane buffer is about to change.static final Object
The bufferSet scope of the EditPane was changed.static final Object
Edit pane created.static final Object
Edit pane destroyed.static final Object
Edit pane caret position is about to change in a major way -
Constructor Summary
ConstructorDescriptionEditPaneUpdate
(EditPane editPane, Object what) Creates a new edit pane update message. -
Method Summary
Modifier and TypeMethodDescriptionReturns the edit pane involved.getWhat()
Returns what caused this edit pane update.
-
Field Details
-
CREATED
Edit pane created. -
DESTROYED
Edit pane destroyed. -
BUFFER_CHANGED
The current buffer in the EditPane has changed to show a different buffer. This happens when an action results in a call to EditPane.setBuffer(). -
POSITION_CHANGING
Edit pane caret position is about to change in a major way -
BUFFER_CHANGING
Edit pane buffer is about to change. You should see this before BUFFER_CHANGED.- Since:
- 4.3pre3
-
BUFFERSET_CHANGED
The bufferSet scope of the EditPane was changed.- Since:
- 4.3pre15
-
-
Constructor Details
-
EditPaneUpdate
Creates a new edit pane update message.- Parameters:
editPane
- The edit panewhat
- What happened
-
-
Method Details
-
getWhat
Returns what caused this edit pane update. -
getEditPane
Returns the edit pane involved. -
paramString
- Overrides:
paramString
in classEBMessage
- Returns:
- a string representation of this message's parameters.
-