1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-12-22 02:49:06 +00:00

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

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;
}