Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IEditorPage.java')
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IEditorPage.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IEditorPage.java b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IEditorPage.java
index e374e922d5e..b4cd638f5a4 100644
--- a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IEditorPage.java
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IEditorPage.java
@@ -1,5 +1,5 @@
/**
- *
+ *
*/
package org.eclipse.papyrus.infra.core.sasheditor.editor;
@@ -11,15 +11,15 @@ import org.eclipse.ui.IEditorPart;
* This interface allows to read the data. User should not attent to modifiy or write the data in anyway.
* This interface is provided as parameter of the {@link IPageChangedListener#pageChanged(IPage)} event and
* in the SashContainer Visitor.
- *
+ *
* @author cedric dumoulin
- *
+ *
*/
public interface IEditorPage extends IPage {
/**
* Returns the active nested editor if there is one.
- *
+ *
* @return the active nested editor, or <code>null</code> if none
*/
public IEditorPart getIEditorPart();

Back to the top