Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorytanguy2009-08-05 16:18:37 +0000
committerytanguy2009-08-05 16:18:37 +0000
commit505d8b30af91a65b07ddaa181acb8f4c9dc93bdd (patch)
treeba0cc71f5cef5e7e54cc6c762ac4cff9943856b0 /plugins/developer/org.eclipse.papyrus.gmfgenextension
parent4e3c4b8268936b726e1913d9c2f3bfbd94408a68 (diff)
downloadorg.eclipse.papyrus-505d8b30af91a65b07ddaa181acb8f4c9dc93bdd.tar.gz
org.eclipse.papyrus-505d8b30af91a65b07ddaa181acb8f4c9dc93bdd.tar.xz
org.eclipse.papyrus-505d8b30af91a65b07ddaa181acb8f4c9dc93bdd.zip
ASSIGNED - bug 281679: [Generative Tools] A pop-up action would be helpful to automate the creation of GenLink CustomBehavior for StereotypeLabelDisplay
https://bugs.eclipse.org/bugs/show_bug.cgi?id=281679
Diffstat (limited to 'plugins/developer/org.eclipse.papyrus.gmfgenextension')
-rw-r--r--plugins/developer/org.eclipse.papyrus.gmfgenextension/src/org/eclipse/papyrus/papyrusgmfgenextension/popupaction/AddGenLinkStereotypeDisplayBehavior.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/plugins/developer/org.eclipse.papyrus.gmfgenextension/src/org/eclipse/papyrus/papyrusgmfgenextension/popupaction/AddGenLinkStereotypeDisplayBehavior.java b/plugins/developer/org.eclipse.papyrus.gmfgenextension/src/org/eclipse/papyrus/papyrusgmfgenextension/popupaction/AddGenLinkStereotypeDisplayBehavior.java
index 93ae4002e7f..c9245c74192 100644
--- a/plugins/developer/org.eclipse.papyrus.gmfgenextension/src/org/eclipse/papyrus/papyrusgmfgenextension/popupaction/AddGenLinkStereotypeDisplayBehavior.java
+++ b/plugins/developer/org.eclipse.papyrus.gmfgenextension/src/org/eclipse/papyrus/papyrusgmfgenextension/popupaction/AddGenLinkStereotypeDisplayBehavior.java
@@ -55,7 +55,7 @@ public class AddGenLinkStereotypeDisplayBehavior extends Action {
public static final String DEFAULT_PARSER_PATTERN = "<<{0}>>"; //$NON-NLS-1$
- public static final String APPLIED_STEREOTYPE_CUSTOM_PARSER_CLASS = "org.eclipse.papyrus.diagram.common.parser.custom.AppliedStereotypeParser"; //$NON-NLS-1$
+ public static final String APPLIED_STEREOTYPE_CUSTOM_PARSER_CLASS = "org.eclipse.papyrus.diagram.common.parser.stereotype.AppliedStereotypeParser"; //$NON-NLS-1$
public static final String GEN_CLASS_RT_CLASS = "Node"; //$NON-NLS-1$
@@ -103,7 +103,8 @@ public class AddGenLinkStereotypeDisplayBehavior extends Action {
}
/**
- * Add the CustomBehavior for Applied Stereotype label display to the GenLink node given as parameter
+ * Add the CustomBehavior for Applied Stereotype label display to the GenLink node given as
+ * parameter
*
* @param genlink
* where the CustomBehavior is added
@@ -144,7 +145,8 @@ public class AddGenLinkStereotypeDisplayBehavior extends Action {
}
/**
- * Add the CustomBehavior for Applied Stereotype label display to the GenLink node given as parameter
+ * Add the CustomBehavior for Applied Stereotype label display to the GenLink node given as
+ * parameter
*
* @param genlink
* where the CustomBehavior is added
@@ -220,7 +222,8 @@ public class AddGenLinkStereotypeDisplayBehavior extends Action {
}
/**
- * Finds the custom parser used for stereotype display. Creates the parser if not already existing
+ * Finds the custom parser used for stereotype display. Creates the parser if not already
+ * existing
*
*
* @param gmfgen

Back to the top