Wiki source code of PlantUML
Last modified by Ricardo Julio Rodríguez Fernández on 2026/03/18 06:56
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{plantuml}} | ||
| 2 | @startuml | ||
| 3 | package "Classic Collections" #DDDDDD { | ||
| 4 | Object <|-- ArrayList | ||
| 5 | } | ||
| 6 | |||
| 7 | package net.sourceforge.plantuml { | ||
| 8 | Object <|-- Demo1 | ||
| 9 | Demo1 *- Demo2 | ||
| 10 | } | ||
| 11 | @enduml | ||
| 12 | {{/plantuml}} | ||
| 13 | |||
| 14 | {{plantuml}} | ||
| 15 | @startuml | ||
| 16 | :Customer: -> (Withdraw) | ||
| 17 | note right of (Withdraw) : This is an example. | ||
| 18 | @enduml | ||
| 19 | {{/plantuml}} | ||
| 20 | |||
| 21 | {{plantuml}} | ||
| 22 | @startditaa | ||
| 23 | Web Browser JEE Server | ||
| 24 | /--------\ +---------+ Database | ||
| 25 | +--------+ |c789 | +---+ | ||
| 26 | |c1FF |<------->| XWIKI |<-=-->|{s}| | ||
| 27 | | Wiki | text | | +---+ | ||
| 28 | | page | +---------+ | ||
| 29 | | with | |c789 | +---+ | ||
| 30 | |diagrams|<------->|PlantUML |<-=-->|{o}| | ||
| 31 | | | image | Server| +---+ | ||
| 32 | \--------/ +---------+ Graphviz | ||
| 33 | @endditaa | ||
| 34 | {{/plantuml}} | ||
| 35 | |||
| 36 | {{mermaid}} | ||
| 37 | sequenceDiagram | ||
| 38 | Alice ->> Bob: Hello Bob, how are you? | ||
| 39 | Bob-->>John: How about you John? | ||
| 40 | Bob-->Alice: Checking with John... | ||
| 41 | Alice->John: Yes... John, how are you? | ||
| 42 | {{/mermaid}} |