Skip to content
Snippets Groups Projects
Commit 5c5ab5d4 authored by Florian Lambers's avatar Florian Lambers
Browse files

added inputVariables to usertaskflowelement

parent d2a3791f
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ EndFlowElement:
UserTaskFlowElement:
"FlowElement" name=ID ASSOCIATION "UserTask"
('with' 'hardcoded' 'inputs' ASSOCIATION LIST_OPEN (hardcodedInputs+=VariableDeclaration (SEPARATOR hardcodedInputs+=VariableDeclaration)*)? LIST_CLOSED)?
('with' 'inputVariables' ASSOCIATION LIST_OPEN (inputVariables+=VariableReference (SEPARATOR inputVariables+=VariableReference)*)? LIST_CLOSED)?
('with' 'readVariables' ASSOCIATION LIST_OPEN (readVariables+=VariableReference (SEPARATOR readVariables+=VariableReference)*)? LIST_CLOSED)?
('with' 'writeVariables' ASSOCIATION LIST_OPEN (writeVariables+=VariableReference (SEPARATOR writeVariables+=VariableReference)*)? LIST_CLOSED)?
('with' 'removeVariables' ASSOCIATION LIST_OPEN (removeVariables+=VariableReference (SEPARATOR removeVariables+=VariableReference)*)? LIST_CLOSED)?
......
......@@ -143,7 +143,8 @@ public class TestgeneratorDSLObjectCreator {
}
element.getReadVariables().add(variableReference);
//element.getReadVariables().add(variableReference);
element.getInputVariables().add(variableReference);
}
for (Variable outputVariable : outputVariables) {
......
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