forked from AY2324S2-CS2103T-W13-4/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AY2324S2-CS2103T-W13-4#67 from nobodyishappy/branc…
…h-update-DG Update to implementation of grouping
- Loading branch information
Showing
2 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
@startuml | ||
!include style.puml | ||
skinparam ClassFontColor #000000 | ||
skinparam ClassBorderColor #000000 | ||
skinparam ClassBackgroundColor #FFFFAA | ||
|
||
title Model | ||
|
||
package Groups { | ||
class Group1 as "<u>2103T:GroupedUniquePersonList</u>" | ||
} | ||
|
||
package Persons { | ||
class Person1 as "<u>Ivan:Person</u>" | ||
class Person2 as "<u>Greg:Person</u>" | ||
class Person3 as "<u>Dave:Person</u>" | ||
class Person4 as "<u>Bob:Person</u>" | ||
} | ||
|
||
Person1 -[hidden]right-> Person2 | ||
Person2 -[hidden]right-> Person3 | ||
Person3 -[hidden]right-> Person4 | ||
|
||
Person1 -up-> Group1 | ||
Person2 -up-> Group1 | ||
Person3 -up-> Group1 | ||
Person4 -up-> Group1 | ||
|
||
package TaskList_Ivan { | ||
class Task1 as "<u>Task 1:Task</u>" | ||
} | ||
|
||
package TaskList_Greg { | ||
class Task2 as "<u>Task 1:Task</u>" | ||
} | ||
|
||
package TaskList_Dave { | ||
class Task3 as "<u>Task 1:Task</u>" | ||
} | ||
|
||
package TaskList_Bob { | ||
class Task4 as "<u>Task 1:Task</u>" | ||
} | ||
|
||
|
||
Task1 -up-> Person1 | ||
Task2 -up-> Person2 | ||
Task3 -up-> Person3 | ||
Task4 -up-> Person4 |