Package org.eclipse.ui
Interface IShowEditorInput
-
public interface IShowEditorInput
Shows the given editor input. Used when an editor is being opened and an existing editor's input matches the one being opened.Editors can optionally implement this interface, giving the editor the opportunity to show the given input if it represents a different subset of the editor's content than the one currently being shown.
- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
showEditorInput(IEditorInput editorInput)
Shows the given input if it represents a different subset of the editor's content than the one currently being shown.
-
-
-
Method Detail
-
showEditorInput
void showEditorInput(IEditorInput editorInput)
Shows the given input if it represents a different subset of the editor's content than the one currently being shown.- Parameters:
editorInput
- the editor input to show
-
-