Package org.gjt.sp.jedit.textarea
Interface StatusListener
-
- All Superinterfaces:
java.util.EventListener
public interface StatusListener extends java.util.EventListener
Fired when the text area needs to display a status message.- Since:
- jEdit 4.3pre2
- Version:
- $Id: StatusListener.java 15577 2009-06-25 05:55:16Z ezust $
- Author:
- Slava Pestov
-
-
Field Summary
Fields Modifier and Type Field Description static int
MULTI_SELECT_CHANGED
static int
OVERWRITE_CHANGED
static int
RECT_SELECT_CHANGED
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
bracketSelected(TextArea textArea, int line, java.lang.String text)
void
narrowActive(TextArea textArea)
void
statusChanged(TextArea textArea, int flag, boolean value)
-
-
-
Field Detail
-
OVERWRITE_CHANGED
static final int OVERWRITE_CHANGED
- See Also:
- Constant Field Values
-
MULTI_SELECT_CHANGED
static final int MULTI_SELECT_CHANGED
- See Also:
- Constant Field Values
-
RECT_SELECT_CHANGED
static final int RECT_SELECT_CHANGED
- See Also:
- Constant Field Values
-
-