Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
372 views
in Technique[技术] by (71.8m points)

How does plantuml represent a multiple cases decision node?

I would like to change the following diagram to have a single decision node (three branches) and a single merge node.

enter image description here

Is such a diagram possible with plantuml? The above diagram results from this code:

@startuml
skinparam ConditionEndStyle diamond
:A;
if (case1) then (yes)
    :B1;
else (no)
if (case 2) then (yes)
    :B2;
else (no)
    :B3;
endif
endif
:C;
@enduml

I know about elseif; it does not produce the result I seek. (It retains two decision nodes, and uses a bar instead of a merge node; is this even valid UML?) I would reluctantly consider a ConditionalNode as an alternative, but I don't see a way to construct one in plantuml.

question from:https://stackoverflow.com/questions/65892041/how-does-plantuml-represent-a-multiple-cases-decision-node

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...