forked from se-edu/addressbook-level3
-
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.
DG: Tweak the 'Architecture' section
Main changes: * Tweak the layout of the Architecture diagram (e.g., push the Commons component to the bottom as it is not an important component). * Add a diagram to explain the presence of *Manager classes. * Move the tip about PlantUML diagrams to the top of the Design section.
- Loading branch information
damithc
committed
Jul 31, 2021
1 parent
d6fb70e
commit 087a766
Showing
5 changed files
with
50 additions
and
14 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,31 @@ | ||
@startuml | ||
!include style.puml | ||
skinparam arrowThickness 1.1 | ||
skinparam arrowColor LOGIC_COLOR_T4 | ||
skinparam classBackgroundColor LOGIC_COLOR | ||
|
||
package Logic { | ||
Interface Logic <<Interface>> | ||
Class LogicManager | ||
} | ||
|
||
package Model{ | ||
Interface Model <<Interface>> | ||
Class ModelManager | ||
} | ||
|
||
package Storage{ | ||
Interface Storage <<Interface>> | ||
Class StorageManager | ||
} | ||
|
||
Class HiddenOutside #FFFFFF | ||
HiddenOutside ..> Logic | ||
|
||
LogicManager .up.|> Logic | ||
ModelManager .up.|> Model | ||
StorageManager .up.|> Storage | ||
|
||
LogicManager --> Model | ||
LogicManager --> Storage | ||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.