Sunday 8 January 2023

PlantUML: rename participants using as keyword in a sequence diagram

We can rename participants using ‘as’ keyword.

 

Example

participant participant1 as p1

 

participantsRename.txt

@startuml

' Participants definition
participant participant1 as p1
actor actor1 as actr1
boundary boundary1 as bndry1
control control1 as con1
entity entity1 as ent1
database database1 as db1
collections collections1 as col1

p1 -> actr1 : To actor
p1 -> bndry1 : To boundary
p1 -> con1 : To control
p1 -> ent1 : To entity
p1 -> db1 : To database
p1 -> col1 : To collections

@enduml

 Above snippet generate below sequence diagram.

 


  

Previous                                                    Next                                                    Home

No comments:

Post a Comment