This blog is primarily focus on Java fundamentals and the libraries built on top of Java programming language. Most of the post are example oriented, hope you have fun in reading my blog....:)
Monday, 8 May 2023
PlantUML: put a dotted arrow between the objects in use case diagram
Use ..>
to put a dotted arrow between the objects in use case diagram.
dottedArrow.txt
@startuml
actor user
usecase "use case 1" as UC1
usecase "use case 2" as UC2
user ..> (UC1)
user ..> (UC2)
@enduml
No comments:
Post a Comment