Created
March 7, 2013 17:43
-
-
Save nanki/5110054 to your computer and use it in GitHub Desktop.
PlantUMLを使ってシーケンス図を描く ref: http://qiita.com/items/2d4da7ccb2d74732c737
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
message | |
---------------------> | |
,---!. | |
|eat|_\ | |
`-----' | |
what was the message? | |
<--------------------- | |
,---!. | |
|eat|_\ | |
`-----' | |
what was the message? | |
---------------------> | |
,---!. | |
|eat|_\ | |
`-----' | |
| | |
| | |
| | |
| | |
| | |
| | |
| ,-. | |
| `-' | |
/|\ | |
| | |
/ \ | |
black | |
| | |
| | |
black ,-. | |
,-. `-' | |
`-' /|\ | |
/|\ | | |
| / \ | |
/ \ white | |
white | |
,-. | |
`-' | |
/|\ | |
| | |
/ \ | |
message | |
---------------------> | |
,---!. | |
|eat|_\ | |
`-----' | |
what was the message? | |
<--------------------- | |
,---!. | |
|eat|_\ | |
`-----' | |
what was the message? | |
---------------------> | |
,---!. | |
|eat|_\ | |
`-----' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
actor black | |
actor white | |
black -> white : message | |
note right: eat | |
white -> black : what was the message? | |
note left: eat | |
black -> white : what was the message? | |
note right: eat | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment