Added support for pause
This commit is contained in:
parent
444c33da2a
commit
7155b940fd
|
@ -100,6 +100,8 @@ public class ExampleScenarioRenderer extends TerminologyRenderer {
|
||||||
int stepCount = 1;
|
int stepCount = 1;
|
||||||
for (ExampleScenarioProcessStepComponent step: process.getStep()) {
|
for (ExampleScenarioProcessStepComponent step: process.getStep()) {
|
||||||
plantUml += toPlantUml(step, stepPrefix(prefix, step, stepCount), scen, actorsActive, actorKeys);
|
plantUml += toPlantUml(step, stepPrefix(prefix, step, stepCount), scen, actorsActive, actorKeys);
|
||||||
|
if (step.getPause())
|
||||||
|
plantUml += "... time passes ...\n";
|
||||||
stepCount++;
|
stepCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue