forked from AY2223S2-CS2113-W12-1/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UML_UI.puml
23 lines (23 loc) · 815 Bytes
/
UML_UI.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@startuml
class functionalities.ui.Ui {
- {static} String DOT_THEN_SPACE
- {static} String LINE
- {static} String BLANK
+ {static} void showUserMessage(String)
+ {static} void printBlankLine()
+ {static} void printFileCreated(boolean)
+ {static} void printArchiveFileCreated(boolean)
+ String readUserCommand()
+ void showErrorMessage()
+ void showWelcomeMessage()
+ {static} void showLine()
+ {static} void formatPrintList(int,String)
+ {static} void printAppointmentAddedMessage(Appointment)
+ {static} void printAppointmentRemovedMessage(Appointment)
+ {static} void printAppointmentMarkMessage()
+ {static} void printAppointmentAlreadyMarkedMessage(String)
+ {static} void printAppointmentUnMarkMessage()
+ {static} void printAppointmentAlreadyUnMarkedMessage(String)
+ {static} void showHelpMessage()
}
@enduml