Skip to main content

All Questions

Tagged with
2 votes
0 answers
39 views

Is there a way to merge different path to the same Control block?

There are only two targeting block which is s1 and s2,but they come from different divergent path through many condtions,like: source code : @startuml !pragma useVerticalIf on :do sth1; if (cond1) ...
zionpi's user avatar
  • 2,641
0 votes
2 answers
118 views

How to add <<input>> to this puml code like in the attach image?

I added a sketch of what I want I want to add <<input>> to this code I added :HW type\n detected; <> but I don't know how to attach it with 'HW type detected' element @startuml Type ...
siwark's user avatar
  • 1
2 votes
1 answer
873 views

How to change formatting of conditional blocks in PlantUML sequence diagram

I have what looks like this: the code that's generating the conditional block is: alt Condition1 Object3 -> Object4: Message5 else Condition2 Object3 -> Object5: Message6 end I have 2 ...
Alexander Mills's user avatar
0 votes
1 answer
156 views

PlantUML produces error when specifying asynchronous messages

I have this PlantUML code (.puml) @startuml title Asynchronous Message Example participant Alice participant Bob Alice -> Bob: Request Bob --> Alice: Acknowledgment Alice ::> Bob: ...
Alexander Mills's user avatar
0 votes
1 answer
510 views

Syntax error when declaring a class in PlantUML .puml file

I have this .puml code: @startuml class ClassName { // Class members (attributes and methods) } participant Object1 participant Object2 participant Object3 participant Object4 participant Object5 ...
Alexander Mills's user avatar