You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -57,7 +57,7 @@ The *Sequence Diagram* below shows how the components interact with each other f
57
57
58
58
The sections below give more details of each component.
59
59
60
-
### UI component
60
+
### UI component (Jing Qian)
61
61
62
62

63
63
@@ -73,7 +73,7 @@ The `UI` component,
73
73
* Executes user commands using the `Logic` component.
74
74
* Listens for changes to `Model` data so that the UI can be updated with the modified data.
75
75
76
-
### Logic component
76
+
### Logic component (Jing Qian)
77
77
78
78

79
79
@@ -86,14 +86,14 @@ The `UI` component,
86
86
1. The result of the command execution is encapsulated as a `CommandResult` object which is passed back to the `Ui`.
87
87
1. In addition, the `CommandResult` object can also instruct the `Ui` to perform certain actions, such as displaying help to the user.
88
88
89
-
Given below is the Sequence Diagram for interactions within the `Logic` component for the `execute("delete 1")` API call.
89
+
Given below is the Sequence Diagram for interactions within the `Logic` component for the `execute("exercise_delete 1")` API call.
90
90
91
91

92
92
93
-
<divmarkdown="span"class="alert alert-info">:information_source: **Note:** The lifeline for `DeleteCommandParser` should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline reaches the end of diagram.
93
+
<divmarkdown="span"class="alert alert-info">:information_source: **Note:** The lifeline for `ExerciseDeleteCommandParser` should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline reaches the end of diagram.
94
94
</div>
95
95
96
-
### Model component
96
+
### Model component (Jing Qian)
97
97
98
98

99
99
@@ -114,7 +114,7 @@ The `Model`,
114
114
</div>
115
115
116
116
117
-
### Storage component
117
+
### Storage component (Jing Qian)
118
118
119
119

120
120
@@ -124,7 +124,7 @@ The `Storage` component,
124
124
* can save `UserPref` objects in json format and read it back.
125
125
* can save the fitNUS data in json format and read it back.
126
126
127
-
### Common classes
127
+
### Common classes
128
128
129
129
Classes used by multiple components are in the `seedu.addressbook.commons` package.
130
130
@@ -134,7 +134,7 @@ Classes used by multiple components are in the `seedu.addressbook.commons` packa
134
134
135
135
This section describes some noteworthy details on how certain features are implemented.
136
136
137
-
### Create routine
137
+
### Create routine (Jing Qian)
138
138
139
139
The feature to create a routine in fitNUS is implemented using `RoutineCreateCommand` class, which inherits from
140
140
`Command` class. The argument is supplied after parsing the user input by the `RoutineCreateCommandParser` class.
@@ -174,7 +174,7 @@ Given below is the sequence diagram showing how the routine creation command is
0 commit comments