Skip to content

Instantly share code, notes, and snippets.

@linux-china
Created August 5, 2019 17:30
Show Gist options
  • Save linux-china/0f5cb7a8df0310b791eeb0e8ddb517e6 to your computer and use it in GitHub Desktop.
Save linux-china/0f5cb7a8df0310b791eeb0e8ddb517e6 to your computer and use it in GitHub Desktop.
Composite, Aggregate and Relation
@startuml
class Building {
- apartments
}
Building --* Apartment: contains >
class Car {
- wheels
}
Car -up-|> Vehicle: Extends
Car --o Wheel: has 4 >
Person -left-> Apartment: resides >
Person .right.> Car: owns >
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment