Added support for pause

This commit is contained in:
Lloyd McKenzie 2023-08-08 14:18:50 -06:00
parent 444c33da2a
commit 7155b940fd
1 changed files with 2 additions and 0 deletions

View File

@ -100,6 +100,8 @@ public class ExampleScenarioRenderer extends TerminologyRenderer {
int stepCount = 1;
for (ExampleScenarioProcessStepComponent step: process.getStep()) {
plantUml += toPlantUml(step, stepPrefix(prefix, step, stepCount), scen, actorsActive, actorKeys);
if (step.getPause())
plantUml += "... time passes ...\n";
stepCount++;
}