Skip to content

Commit

Permalink
Remove Address from all UML diagrams
Browse files Browse the repository at this point in the history
Let's,
* remove Address as a field from all UML diagrams
* add multiplicities to UML diagrams as approppriate
  • Loading branch information
KrashKart committed Oct 20, 2024
1 parent 9cdc5e8 commit fcc61e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
7 changes: 3 additions & 4 deletions docs/diagrams/BetterModelClassDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ UniquePersonList -right-> Person

Person -up-> "*" Tag

Person *--> Name
Person *--> Phone
Person *--> Email
Person *--> Address
Person *--> "1" Name
Person *--> "1" Phone
Person *--> "1" Email
@enduml
11 changes: 4 additions & 7 deletions docs/diagrams/ModelClassDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Class UserPrefs

Class UniquePersonList
Class Person
Class Address
Class Email
Class Name
Class Phone
Expand All @@ -37,18 +36,16 @@ UserPrefs .up.|> ReadOnlyUserPrefs

CampusConnect *--> "1" UniquePersonList
UniquePersonList --> "~* all" Person
Person *--> Name
Person *--> Phone
Person *--> Email
Person *--> Address
Person *--> "1" Name
Person *--> "1" Phone
Person *--> "1" Email
Person *--> "*" Tag

Person -[hidden]up--> I
UniquePersonList -[hidden]right-> I

Name -[hidden]right-> Phone
Phone -[hidden]right-> Address
Address -[hidden]right-> Email
Phone -[hidden]right-> Email

ModelManager --> "~* filtered" Person
@enduml

0 comments on commit fcc61e9

Please sign in to comment.