Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/figure/node/IPapyrusNodeNamedElementFigure.java')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/figure/node/IPapyrusNodeNamedElementFigure.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/figure/node/IPapyrusNodeNamedElementFigure.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/figure/node/IPapyrusNodeNamedElementFigure.java
index bfbdd12385b..cb3f9d036b4 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/figure/node/IPapyrusNodeNamedElementFigure.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/figure/node/IPapyrusNodeNamedElementFigure.java
@@ -63,4 +63,28 @@ public interface IPapyrusNodeNamedElementFigure extends IPapyrusNodeUMLElementFi
public void setNameLabelIcon(boolean displayNameLabelIcon);
+ /**
+ * restore a label that represent the name of the element.
+ */
+ public void restoreNameLabel();
+
+ /** remove the label that represent the name**/
+ public void removeNameLabel();
+ /** remove the label that represent the stereotype**/
+ public void removeStereotypeLabel();
+ /**
+ * restore a label that represent the appliedStereotype of the element.
+ */
+ public void restoreStereotypeLabel();
+
+ /**
+ * restore a label that represent the tagged of the element.
+ */
+ public void restoreTaggedLabel();
+
+
+ /** remove the label that represent the tagged**/
+ public void removeTaggedLabel();
+
+
}

Back to the top