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/contentprovider/simple/AbstractPanelModel.java')
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/contentprovider/simple/AbstractPanelModel.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/contentprovider/simple/AbstractPanelModel.java b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/contentprovider/simple/AbstractPanelModel.java
index c9cb164e529..0287d0c3458 100644
--- a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/contentprovider/simple/AbstractPanelModel.java
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/contentprovider/simple/AbstractPanelModel.java
@@ -16,6 +16,7 @@ package org.eclipse.papyrus.infra.core.sasheditor.contentprovider.simple;
import org.eclipse.papyrus.infra.core.sasheditor.contentprovider.IAbstractPanelModel;
import org.eclipse.papyrus.infra.core.sasheditor.contentprovider.IPageModel;
+
/**
* @author dumoulin
*/
@@ -35,6 +36,7 @@ public abstract class AbstractPanelModel extends AbstractModel implements IAbstr
this.parent = parent;
}
+
/**
* Return the parent of the model. Can be null in the case of rootModel.
*
@@ -44,6 +46,7 @@ public abstract class AbstractPanelModel extends AbstractModel implements IAbstr
return parent;
}
+
/**
* @param parent
* the parent to set
@@ -52,6 +55,7 @@ public abstract class AbstractPanelModel extends AbstractModel implements IAbstr
this.parent = parent;
}
+
/**
* Lookup the folder containing the specified tabItem.
*
@@ -60,4 +64,5 @@ public abstract class AbstractPanelModel extends AbstractModel implements IAbstr
*/
abstract protected TabFolderModel lookupTabFolder(IPageModel tabItem);
+
}

Back to the top