Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Maggi2015-04-17 12:54:45 +0000
committerGerrit Code Review @ Eclipse.org2017-02-03 09:20:49 +0000
commit4c87c83eec447b2ca5084b20078f2548bc461673 (patch)
tree17b577d16245df4c4b282b1f27ecf64e4f235ef7 /plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication
parentbe602cab9bf0a5ebda436ee5e3c2f8c75be4f7b8 (diff)
downloadorg.eclipse.papyrus-4c87c83eec447b2ca5084b20078f2548bc461673.tar.gz
org.eclipse.papyrus-4c87c83eec447b2ca5084b20078f2548bc461673.tar.xz
org.eclipse.papyrus-4c87c83eec447b2ca5084b20078f2548bc461673.zip
Bug 464625: [All Diagrams] Direct edition should rely on service edit to
manipulate values https://bugs.eclipse.org/bugs/show_bug.cgi?id=464625 - Modify AbstractElementTypeBasedAttributeParser to use IElementEditService - Modify Template regenerate all diagrams (except InteractionOverview with the missing gmfgen) Change-Id: I19a0f8fe5a2e6b9ec4e5e92be6990753bc1dbf9b Signed-off-by: Gabriel Pascual <gabriel.pascual@all4tec.net> Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication')
-rwxr-xr-xplugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/src-gen/org/eclipse/papyrus/uml/diagram/communication/parsers/MessageFormatParser.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/src-gen/org/eclipse/papyrus/uml/diagram/communication/parsers/MessageFormatParser.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/src-gen/org/eclipse/papyrus/uml/diagram/communication/parsers/MessageFormatParser.java
index 987f19410ff..33af21530de 100755
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/src-gen/org/eclipse/papyrus/uml/diagram/communication/parsers/MessageFormatParser.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.communication/src-gen/org/eclipse/papyrus/uml/diagram/communication/parsers/MessageFormatParser.java
@@ -25,6 +25,7 @@ import org.eclipse.gmf.runtime.common.ui.services.parser.ParserEditStatus;
import org.eclipse.osgi.util.NLS;
import org.eclipse.papyrus.infra.core.resource.ModelSet;
import org.eclipse.papyrus.infra.emf.gmf.command.EMFtoGMFCommandWrapper;
+import org.eclipse.papyrus.infra.gmfdiag.common.parsers.AbstractElementTypeBasedAttributeParser;
import org.eclipse.papyrus.infra.gmfdiag.tooling.runtime.parsers.AbstractAttributeParser;
import org.eclipse.papyrus.infra.gmfdiag.tooling.runtime.parsers.AbstractFeatureParser;
import org.eclipse.papyrus.infra.internationalization.common.utils.InternationalizationPreferencesUtils;
@@ -37,7 +38,7 @@ import org.eclipse.uml2.uml.UMLPackage;
/**
* @generated
*/
-public class MessageFormatParser extends AbstractAttributeParser {
+public class MessageFormatParser extends AbstractElementTypeBasedAttributeParser {
/**
* @generated
@@ -251,6 +252,5 @@ public class MessageFormatParser extends AbstractAttributeParser {
}
return null != result ? result : super.getValue(element, feature);
- }
-
+ }
}

Back to the top