Package editor
Class ScopeHighlighter
- java.lang.Object
-
- editor.ScopeHighlighter
-
- All Implemented Interfaces:
FocusListener
,EventListener
,CaretListener
,DocumentListener
public class ScopeHighlighter extends Object implements DocumentListener, CaretListener, FocusListener
-
-
Constructor Summary
Constructors Constructor Description ScopeHighlighter(GosuEditor gosuEditor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
caretUpdate(CaretEvent e)
void
changedUpdate(DocumentEvent e)
void
focusGained(FocusEvent e)
void
focusLost(FocusEvent e)
void
insertUpdate(DocumentEvent e)
void
removeUpdate(DocumentEvent e)
void
updateState()
-
-
-
Constructor Detail
-
ScopeHighlighter
public ScopeHighlighter(GosuEditor gosuEditor)
-
-
Method Detail
-
updateState
public void updateState()
-
insertUpdate
public void insertUpdate(DocumentEvent e)
- Specified by:
insertUpdate
in interfaceDocumentListener
-
removeUpdate
public void removeUpdate(DocumentEvent e)
- Specified by:
removeUpdate
in interfaceDocumentListener
-
changedUpdate
public void changedUpdate(DocumentEvent e)
- Specified by:
changedUpdate
in interfaceDocumentListener
-
caretUpdate
public void caretUpdate(CaretEvent e)
- Specified by:
caretUpdate
in interfaceCaretListener
-
focusGained
public void focusGained(FocusEvent e)
- Specified by:
focusGained
in interfaceFocusListener
-
focusLost
public void focusLost(FocusEvent e)
- Specified by:
focusLost
in interfaceFocusListener
-
-