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/IComponentPage.java')
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IComponentPage.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IComponentPage.java b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IComponentPage.java
new file mode 100644
index 00000000000..f7a49058ead
--- /dev/null
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/editor/IComponentPage.java
@@ -0,0 +1,17 @@
+/**
+ *
+ */
+package org.eclipse.papyrus.infra.core.sasheditor.editor;
+
+/**
+ * Allows to access to properties of a Sash ComponentPage. 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 IComponentPage extends IPage {
+
+}

Back to the top