Skip to content

Commit

Permalink
Update UML for undo command class
Browse files Browse the repository at this point in the history
  • Loading branch information
KrashKart committed Oct 22, 2024
1 parent 95ff3c9 commit 8c49d4a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docs/diagrams/CommandClasses.puml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package "Command Classes" as CommandClasses {
Class "AddCommand" as AC
Class "ClearCommand" as CC
Class "DeleteCommand" as DC
Class "DeleteTagCommand" as DTC
Class "EditCommand" as EdC
Class "ExitCommand" as ExC
Class "FindByEmailCommand" as FEC
Expand All @@ -21,7 +22,7 @@ package "Command Classes" as CommandClasses {
Class "FindByPhoneCommand" as FPC
Class "HelpCommand" as HC
Class "ListCommand" as LC
Class "DeleteTagCommand" as DTC
Class "UndoCommand" as UC
}
}
HiddenOutside ..> Command
Expand All @@ -43,9 +44,11 @@ FEC -[hidden]u- CC

DC -u-|> Command
DC -[hidden]right- EdC
DTC -u-|> Command
FEC -[hidden]u- DC

DTC -u-|> Command
FEC -[hidden]u- DTC

EdC -u-|> Command
EdC -[hidden]right- ExC
FEC -[hidden]u- EdC
Expand All @@ -59,5 +62,9 @@ HC -[hidden]right- LC
FEC -[hidden]u- HC

LC -u-|> Command
LC -[hidden]right UC
FEC -[hidden]u- LC

UC -u-|> Command
FEC -[hidden]u- UC
@enduml

0 comments on commit 8c49d4a

Please sign in to comment.