forked from nus-cs2103-AY2324S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
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 #173 from SinhaVedant/branch-documentation
Update DG
- Loading branch information
Showing
5 changed files
with
128 additions
and
42 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
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,25 @@ | ||
@startuml | ||
!include style.puml | ||
skinparam arrowThickness 1.1 | ||
skinparam arrowColor STORAGE_COLOR | ||
skinparam classBackgroundColor STORAGE_COLOR | ||
|
||
package Storage as StoragePackage { | ||
|
||
package "GradedComponentBook Storage" #F4F6F6{ | ||
Class "<<interface>>\nGradedComponentBookStorage" as GradedComponentBookStorage | ||
Class JsonGradedComponentBookStorage | ||
Class JsonSerializableGcBook | ||
Class JsonAdaptedGradedComponent | ||
} | ||
|
||
} | ||
Class HiddenOutside #FFFFFF | ||
Class I #FFFFFF | ||
|
||
HiddenOutside -right-> "1" GradedComponentBookStorage | ||
I -right-|> GradedComponentBookStorage | ||
JsonGradedComponentBookStorage .up.|> GradedComponentBookStorage | ||
JsonGradedComponentBookStorage ..> JsonSerializableGcBook | ||
JsonSerializableGcBook --> "*" JsonAdaptedGradedComponent | ||
@enduml |
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,43 @@ | ||
@startuml | ||
!include style.puml | ||
skinparam arrowThickness 1.1 | ||
skinparam arrowColor STORAGE_COLOR | ||
skinparam classBackgroundColor STORAGE_COLOR | ||
|
||
package Storage as StoragePackage { | ||
|
||
package "StudentBook Storage" #F4F6F6{ | ||
Class "<<interface>>\nStudentBookStorage" as StudentBookStorage | ||
Class JsonStudentBookStorage | ||
Class JsonSerializableStudentBook | ||
Class JsonAdaptedStudent | ||
} | ||
|
||
package "StudentScoreBook Storage" #F4F6F6{ | ||
Class "<<interface>>\nStudentScoreBookStorage" as StudentScoreBookStorage | ||
Class JsonStudentScoreBookStorage | ||
Class JsonSerializableStudentScoreBook | ||
Class JsonAdaptedStudentScore | ||
} | ||
|
||
Class JsonAdaptedTag | ||
|
||
} | ||
Class HiddenOutside #FFFFFF | ||
Class I #FFFFFF | ||
Class J #FFFFFF | ||
Class K #FFFFFF | ||
|
||
HiddenOutside -right-> "1" StudentBookStorage | ||
I -right-> "1" StudentScoreBookStorage | ||
J --|> StudentBookStorage | ||
K --|> StudentScoreBookStorage | ||
JsonStudentBookStorage .up.|> StudentBookStorage | ||
JsonStudentBookStorage ..> JsonSerializableStudentBook | ||
JsonSerializableStudentBook --> "*" JsonAdaptedStudent | ||
JsonAdaptedStudent --> "*" JsonAdaptedTag | ||
JsonStudentScoreBookStorage .up.|> StudentScoreBookStorage | ||
JsonStudentScoreBookStorage ..> JsonSerializableStudentScoreBook | ||
JsonSerializableStudentScoreBook --> "*" JsonAdaptedStudentScore | ||
JsonAdaptedStudentScore --> "*" JsonAdaptedTag | ||
@enduml |