Merge pull request #887 from jansende/patch-1

Added <<start>> Stereotype
This commit is contained in:
PlantUML 2022-01-31 09:27:20 +01:00 committed by GitHub
commit cee57b06ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -171,6 +171,9 @@ public class CommandCreateState extends SingleLineCommand2<StateDiagram> {
if ("<<join>>".equalsIgnoreCase(stereotype)) {
return LeafType.STATE_FORK_JOIN;
}
if ("<<start>>".equalsIgnoreCase(stereotype)) {
return LeafType.CIRCLE_START;
}
if ("<<end>>".equalsIgnoreCase(stereotype)) {
return LeafType.CIRCLE_END;
}