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/service/palette/IPaletteAspectToolEntryProxy.java')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/service/palette/IPaletteAspectToolEntryProxy.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/service/palette/IPaletteAspectToolEntryProxy.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/service/palette/IPaletteAspectToolEntryProxy.java
index 346cd29d974..a1232a67728 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/service/palette/IPaletteAspectToolEntryProxy.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/service/palette/IPaletteAspectToolEntryProxy.java
@@ -26,4 +26,11 @@ public interface IPaletteAspectToolEntryProxy extends IPaletteEntryProxy {
*/
public List<IPostAction> getPostActions();
+ /**
+ * Returns the list of pre actions to execute on creation
+ *
+ * @return the list of pre actions to execute on creation
+ */
+ public List<IPreAction> getPreActions();
+
}

Back to the top