forks work

This commit is contained in:
2025-07-13 13:10:18 +02:00
parent 5de15f8a68
commit f984f31a24
10 changed files with 703 additions and 205 deletions

View File

@@ -11,8 +11,8 @@ import java.util.List;
@ToString
public class Transition {
public String type; // withExternal, withChoice, withInternal, etc.
public String sourceState;
public String targetState;
public List<String> sourceStates = new ArrayList<>();
public List<String> targetStates = new ArrayList<>();
public String event;
public String guard;
@@ -22,4 +22,5 @@ public class Transition {
public List<Boolean> isLambdaActions = new ArrayList<>();
public Integer order = null; // optional order for withChoice or withJunction
}