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/developer
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/developer')
-rwxr-xr-xplugins/developer/org.eclipse.papyrus.def/xtend/aspects/parsers/PredefinedParser.xtend7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/parsers/PredefinedParser.xtend b/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/parsers/PredefinedParser.xtend
index 03b4461f06a..3f2f6eb88b0 100755
--- a/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/parsers/PredefinedParser.xtend
+++ b/plugins/developer/org.eclipse.papyrus.def/xtend/aspects/parsers/PredefinedParser.xtend
@@ -8,7 +8,8 @@
*
* Contributors:
* Benoit Maggi (CEA LIST) benoit.maggi@cea.fr - Initial API and implementation
- * Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Bug 496905
+ * Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Bug 496905
+ * Gabriel Pascual (ALL4TEC) gabriel.pascual@all4tec.net - Bug 464625
*****************************************************************************/
package aspects.parsers
@@ -17,7 +18,7 @@ import com.google.inject.Singleton
@Singleton class PredefinedParser extends parsers.PredefinedParser{
override def extendsList(org.eclipse.gmf.codegen.gmfgen.PredefinedParser it) //
- '''extends org.eclipse.papyrus.infra.gmfdiag.tooling.runtime.parsers.AbstractAttributeParser'''
+ '''extends org.eclipse.papyrus.infra.gmfdiag.common.parsers.AbstractElementTypeBasedAttributeParser'''
override def additions(org.eclipse.gmf.codegen.gmfgen.PredefinedParser it) //
'''
@@ -61,4 +62,4 @@ import com.google.inject.Singleton
return null != result ? result : super.getValue(element, feature);
}
'''
-}
+}

Back to the top