Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify UML and user guide #65

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,19 @@ Examples:
* `list` followed by `delete 2` deletes the 2nd person in the address book.
* `find Betsy` followed by `delete 1` deletes the 1st person in the results of the `find` command.

### Marking a task : `mark`

Mark the specified task as done.

Format: `mark task/TASKNAME o/INDEX`

* Mark the specified task with `TASKNAME` as done.
* The index refers to the index number shown in the displayed person list.
* The index **must be a positive integer** 1, 2, 3, …​

Examples:
* `mark task/Submit Project o/1` mark the task Submit Project assigned to the first person in the address book as done.

### Clearing all entries : `clear`

Clears all entries from the address book.
Expand Down
1 change: 1 addition & 0 deletions docs/diagrams/BetterModelClassDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Task *--> Deadline
Task *--> Person
Task *--> IsDone
Task *--> Progress
Task *--> Priority

Department *--> HeadOfDepartment

Expand Down
2 changes: 2 additions & 0 deletions docs/diagrams/ModelClassDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Class Task
Class Deadline
Class Title
Class IsDone
Class Priority

Class I #FFFFFF
}
Expand Down Expand Up @@ -60,6 +61,7 @@ Task *--> Title
Task *--> Deadline
Task *--> Person
Task *--> IsDone
Task *--> Priority

Task -[hidden]up--> I
UniqueTaskList -[hidden]right-> I
Expand Down
Loading