| org.eclipse.ui.texteditor.ITextEditorExtension2
All known Subclasses: org.eclipse.ui.texteditor.AbstractTextEditor,
ITextEditorExtension2 | public interface ITextEditorExtension2 (Code) | | Extension interface for
org.eclipse.ui.texteditor.ITextEditor . Adds
the following functions:
- modifiable state of the editor's input
- validate state of editor input
since: 2.1 |
Method Summary | |
boolean | isEditorInputModifiable() Returns whether the editor's input can be persistently be modified.
This is orthogonal to ITextEditorExtension.isEditorInputReadOnly as read-only elements may be modifiable and
writable elements may not be modifiable. | boolean | validateEditorInputState() Validates the state of the given editor input. |
isEditorInputModifiable | boolean isEditorInputModifiable()(Code) | | Returns whether the editor's input can be persistently be modified.
This is orthogonal to ITextEditorExtension.isEditorInputReadOnly as read-only elements may be modifiable and
writable elements may not be modifiable. If the given element is not connected to this document
provider, the result is undefined. Document providers are allowed to use a cache to answer this
question, i.e. there can be a difference between the "real" state of the element and the return
value.
true if the editor input is modifiable |
validateEditorInputState | boolean validateEditorInputState()(Code) | | Validates the state of the given editor input. The predominate intent
of this method is to take any action probably necessary to ensure that
the input can persistently be changed.
true if the input was validated, false otherwise |
|
|