Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

PlantUML: Draw a rectangle around usecases

rectangle.txt

@startuml

left to right direction

skinparam packageStyle rectangle

actor customer as C1

rectangle checkout {
   C1 -- (checkout)
   (checkout) -> (payment) : pay the money
   (payment) -> (notify user)
}

C1 -> (Login)
C1 -> (Logout)

@enduml

 

Above snippet generate below diagram.

 


Previous                                                    Next                                                    Home


This post first appeared on Java Tutorial : Blog To Learn Java Programming, please read the originial post: here

Share the post

PlantUML: Draw a rectangle around usecases

×

Subscribe to Java Tutorial : Blog To Learn Java Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×