Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IShowEditorInput.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IShowEditorInput.java26
1 files changed, 12 insertions, 14 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IShowEditorInput.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IShowEditorInput.java
index f16ce61178f..46ffef71fe5 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IShowEditorInput.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IShowEditorInput.java
@@ -14,27 +14,25 @@
package org.eclipse.ui;
-
/**
- * Shows the given editor input. Used when an editor is being opened and an existing
- * editor's input matches the one being opened.
+ * Shows the given editor input. Used when an editor is being opened and an
+ * existing editor's input matches the one being opened.
* <p>
- * 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.
+ * 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.
* </p>
*
* @since 3.1
*/
public interface IShowEditorInput {
- /**
- * Shows the given input if it represents a different subset of the editor's content
- * than the one currently being shown.
- *
- * @param editorInput the editor input to show
- */
- 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.
+ *
+ * @param editorInput the editor input to show
+ */
+ void showEditorInput(IEditorInput editorInput);
}
-

Back to the top