MoinMoin Logo
  • Comments
  • Immutable Page
  • Menu
    • Navigation
    • RecentChanges
    • FindPage
    • Local Site Map
    • Help
    • HelpContents
    • HelpOnMoinWikiSyntax
    • Display
    • Attachments
    • Info
    • Raw Text
    • Print View
    • Edit
    • Load
    • Save
  • Login

Navigation

  • Start
  • Sitemap
Revision 2 as of 2016-10-10 23:06:44
  • 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)
  • http://plantuml.com/class-diagram

  • 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
  • MoinMoin Powered
  • Python Powered
  • GPL licensed
  • Valid HTML 4.01