|
⇤ ← Revision 1 as of 2016-10-10 23:06:25
Size: 766
Comment:
|
Size: 746
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 12: | Line 12: |
| {{{#!highlight plantuml | {{{ |
PlantUML
https://en.wikipedia.org/wiki/PlantUML
wget http://vorboss.dl.sourceforge.net/project/plantuml/plantuml.jar
- java -Djava.awt.headless=true -jar ~/Downloads/plantuml.jar sequence1.txt
- requires graphviz (dot)
- java -Djava.awt.headless=true -jar ~/Downloads/plantuml.jar class1.txt
Class diagram
@startuml
class Car
interface ICar{
addWheel(Wheel w)
}
note "This is a floating note" as CarNote
CarNote .. Car
Driver - Car : drives >
Car *- Wheel : have 4 >
Car -- Person : < owns
/'
<|-- extends
-- association
..> depends
<|.. implements / realizes
'/
Car ..|> ICar
Car : engine : String
Car : startEngine()
@enduml