From 9e7f94c0aab857195ec50df5b6313292ea33f237 Mon Sep 17 00:00:00 2001 From: tsulim Date: Mon, 15 Apr 2024 23:07:58 +0800 Subject: [PATCH] Resize diagrams in developer guide --- docs/DeveloperGuide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md index 9044c39cc3d..8e73e6a61aa 100644 --- a/docs/DeveloperGuide.md +++ b/docs/DeveloperGuide.md @@ -121,7 +121,7 @@ How the parsing works: **API** : [`Model.java`](https://github.com/AY2324S2-CS2103-F08-3/tp/blob/master/src/main/java/staffconnect/model/Model.java) - + The `Model` component, @@ -132,7 +132,7 @@ The `Model` component, * stores the meeting book data i.e., all `Meeting` objects (which are contained in a `UniqueMeetingList` object) in each `Person` object.
:information_source: **Note:** An alternative (arguably, a more OOP) model is given below. It has a `Tag` list in the `StaffBook`, which `Person` references. This allows `StaffBook` to only require one `Tag` object per unique tag, instead of each `Person` needing their own `Tag` objects.
- +
@@ -140,7 +140,7 @@ The `Model` component, **API** : [`Storage.java`](https://github.com/AY2324S2-CS2103-F08-3/tp/blob/master/src/main/java/staffconnect/storage/Storage.java) - + The `Storage` component, * can save both staff book data and user preference data in JSON format, and read them back into corresponding objects. @@ -294,7 +294,7 @@ Given below is an example usage scenario and how the sort mechanism behaves at e The sequence diagram for executing a **"sort n/"** is shown below: - + The following activity diagram summarizes what happens when a user executes a new sort command: