Package | Description |
---|---|
javax.ide.editor |
The editor interfaces that extension writers need to implement in order to add a new editor to an IDE.
|
Modifier and Type | Class and Description |
---|---|
class |
TextEditor
Base class for text based editors.
|
Modifier and Type | Method and Description |
---|---|
abstract Editor |
EditorManager.getActiveEditor()
Returns the Editor that is currently active.
|
Editor |
EditorEvent.getEditor()
Get the
Editor where the event happened. |
abstract Editor |
EditorManager.openEditor(Context context, java.lang.String typeID)
Opens a document in the editor identified by the given editor type identifier.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
EditorManager.closeEditor(Editor editor)
Close the specified
Editor . |
protected void |
EditorManager.fireEditorActivated(Editor editor)
Notifies all editor listeners that the specified editor was activated.
|
protected void |
EditorManager.fireEditorClosed(Editor editor)
Notifies all editor listeners that the specified editor was closed.
|
protected void |
EditorManager.fireEditorDeactivated(Editor editor)
Notifies all editor listeners that the specified editor was deactivated.
|
protected void |
EditorManager.fireEditorOpened(Editor editor)
Notifies all editor listeners that the specified editor was opened.
|
Constructor and Description |
---|
EditorEvent(Editor editor)
Constructor.
|