Skip to content
Snippets Groups Projects
Commit 0cb0f17f authored by Nikolaus Huber's avatar Nikolaus Huber
Browse files

Actions Start, Stop, Branch and Loop now renamed to *Action

git-svn-id: https://se1.informatik.uni-wuerzburg.de/usvn/svn/code/code/DMM/trunk@8231 9e42b895-fcda-4063-8a3b-11be15eb1bbd
parent 46ff06cb
No related branches found
No related tags found
No related merge requests found
......@@ -80,24 +80,24 @@ AdaptationPlan returns AdaptationPlan:
('steps' '{' steps+=AbstractControlFlowElement ( "," steps+=AbstractControlFlowElement)* '}' )?
'}';
Start returns Start:
{Start}
Start returns StartAction:
{StartAction}
'Start'
'{'
('predecessor' predecessor=[AbstractControlFlowElement|EString])?
('successor' successor=[AbstractControlFlowElement|EString])?
'}';
Stop returns Stop:
{Stop}
Stop returns StopAction:
{StopAction}
'Stop'
'{'
('predecessor' predecessor=[AbstractControlFlowElement|EString])?
('successor' successor=[AbstractControlFlowElement|EString])?
'}';
Loop returns Loop:
'Loop'
Loop returns LoopAction:
'LoopAction'
'{'
'counter' counter=EInt
('predecessor' predecessor=[AbstractControlFlowElement|EString])?
......@@ -105,8 +105,8 @@ Loop returns Loop:
'body' body=AdaptationPlan
'}';
Branch returns Branch:
'Branch'
Branch returns BranchAction:
'BranchAction'
'{'
('condition' condition=EString)?
('predecessor' predecessor=[AbstractControlFlowElement|EString])?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment