Skip to content

Commit

Permalink
Merge pull request #260 from Kailash201/v1.4
Browse files Browse the repository at this point in the history
Update status bar
  • Loading branch information
ZD292 authored Nov 12, 2023
2 parents 545cc49 + 18a3c92 commit 4fbceae
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Given below is a quick overview of main components and how they interact with ea

**2.1.1. Main components of the architecture**

**`Main`** has two main classes called [`Main`](https://github.com/AY2324S1-CS2103T-T10-3/tp/blob/master/src/main/java/seedu/address/Main.java) and [`MainApp`](https://github.com/AY2324S1-CS2103T-T10-3/tp/blob/master/src/main/java/seedu/address/MainApp.java)). It is responsible for app launch and shut down.
**`Main`** has two main classes called [`Main`](https://github.com/AY2324S1-CS2103T-T10-3/tp/blob/master/src/main/java/seedu/address/Main.java) and [`MainApp`](https://github.com/AY2324S1-CS2103T-T10-3/tp/blob/master/src/main/java/seedu/address/MainApp.java). It is responsible for app launch and shut down.
* At app launch, it initializes the other components in the correct sequence, and connects them up with each other.
* At shut down, it shuts down the other components and invokes cleanup methods where necessary.

Expand Down
14 changes: 11 additions & 3 deletions docs/diagrams/ModelClassDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ Class Groups
Class Name
Class Phone
Class FreeTimes

Class GroupList
class TimeIntervalList
class TimeInterval
Class I #FFFFFF
}

Expand All @@ -37,11 +39,17 @@ UserPrefs .up.|> ReadOnlyUserPrefs

AddressBook *--> "1" UniquePersonList
UniquePersonList --> "~* all" Person

AddressBook *--> "1" GroupList
GroupList --> "*" Groups

Person *--> Name
Person *--> Phone
Person *--> "*" Groups
Person *--> "1" GroupList
Person *--> Email
Person *--> "*" FreeTimes
Person *--> "1" TimeIntervalList

TimeIntervalList --> "*" TimeInterval

Person -[hidden]up--> I
UniquePersonList -[hidden]right-> I
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/UserPrefs.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class UserPrefs implements ReadOnlyUserPrefs {

private GuiSettings guiSettings = new GuiSettings();
private Path addressBookFilePath = Paths.get("data", "addressbook.json");
private Path addressBookFilePath = Paths.get("data", "projectPRO.json");

/**
* Creates a {@code UserPrefs} with default values.
Expand Down

0 comments on commit 4fbceae

Please sign in to comment.