Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2017-01-23 16:01:42 +0000
committerHenrik Rentz-Reichert2017-01-23 16:01:42 +0000
commitcde1fd1da9779f46e87e5c3258c6a5f2de809553 (patch)
tree8bdf40af71933d70e349c863d8d6ec8a9d96e9f9 /plugins/org.eclipse.etrice.ui.behavior
parent9b02d5a62ea41136b46b744f7b2c1cf50f30a888 (diff)
downloadorg.eclipse.etrice-cde1fd1da9779f46e87e5c3258c6a5f2de809553.tar.gz
org.eclipse.etrice-cde1fd1da9779f46e87e5c3258c6a5f2de809553.tar.xz
org.eclipse.etrice-cde1fd1da9779f46e87e5c3258c6a5f2de809553.zip
re-generated all Xtext languages, introduced TransitionBase
as common super class of Transition and RefinedTransition Change-Id: Id4dc739696814d3ffc704626a37d6e9599f3432c
Diffstat (limited to 'plugins/org.eclipse.etrice.ui.behavior')
-rw-r--r--plugins/org.eclipse.etrice.ui.behavior/src/org/eclipse/etrice/ui/behavior/dialogs/TransitionPropertyDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.etrice.ui.behavior/src/org/eclipse/etrice/ui/behavior/dialogs/TransitionPropertyDialog.java b/plugins/org.eclipse.etrice.ui.behavior/src/org/eclipse/etrice/ui/behavior/dialogs/TransitionPropertyDialog.java
index 74cade87f..71ea45657 100644
--- a/plugins/org.eclipse.etrice.ui.behavior/src/org/eclipse/etrice/ui/behavior/dialogs/TransitionPropertyDialog.java
+++ b/plugins/org.eclipse.etrice.ui.behavior/src/org/eclipse/etrice/ui/behavior/dialogs/TransitionPropertyDialog.java
@@ -246,14 +246,14 @@ public class TransitionPropertyDialog extends AbstractMemberAwarePropertyDialog
if (refined!=null) {
createActionCodeEditor(body, "&Action Code:",
refined.getAction(), refined,
- FSMPackage.eINSTANCE.getRefinedTransition_Action(),
+ FSMPackage.eINSTANCE.getTransitionBase_Action(),
null, s2m, m2s, true, true, false, null, exprProvider);
}
}
else
{
createActionCodeEditor(body, "&Action Code:", trans.getAction(),
- trans, FSMPackage.eINSTANCE.getTransition_Action(), null,
+ trans, FSMPackage.eINSTANCE.getTransitionBase_Action(), null,
s2m, m2s, true, true, false, null, exprProvider);
}

Back to the top