GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
1
nigel.stanger
/
templates
forked from
mark.george/templates
Browse code
Formatting
master
1 parent
17c5287
commit
15c63206fc92864b29a3080d196fa20416e41ca0
Mark George
authored
on 10 May 2019
Patch
Showing
1 changed file
plantuml/sequence-diagram-tips.md
Ignore Space
Show notes
View
plantuml/sequence-diagram-tips.md
## Arrow colors You can change the colors of the arrows and messages as followings: ``` a -[#red]> b : <color blue> some message</color> ``` ## Collections There is a "collections" participant type: ``` collections "Things" as things ``` ## Hidden returns There is sometimes some weirdness when returning after a self call when there is no explicit return. You can add a hidden return to fix this using: ``` a -> b++ : do stuff b -> b : do stuff to self b -[hidden]-> a : hidden return to fix weirdness ```
## Arrow colors You can change the colors of the arrows and messages as followings: a -[#red]> b : <color blue> some message</color> ## Collections There is a "collections" participant type: ``` collections "Things" as things ``` ## Hidden returns There is sometimes some weirdness when returning after a self call when there is no explicit return. You can add a hidden return to fix this using: ``` a -> b++ : do stuff b -> b : do stuff to self b -[hidden]-> a : hidden return to fix weirdness ```
Show line notes below