forked from nus-cs2103-AY2425S1/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.
Add activity diagram back for Add Assignment command
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
docs/diagrams/add-assignment/AddAssignmentActivityDiagram.puml
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,37 @@ | ||
@startuml | ||
'https://plantuml.com/activity-diagram-beta | ||
|
||
start | ||
:ClickServlet.handleRequest(); | ||
:new page; | ||
if (Page.onSecurityCheck) then (true) | ||
:Page.onInit(); | ||
if (isForward?) then (no) | ||
:Process controls; | ||
if (continue processing?) then (no) | ||
stop | ||
endif | ||
|
||
if (isPost?) then (yes) | ||
:Page.onPost(); | ||
else (no) | ||
:Page.onGet(); | ||
endif | ||
:Page.onRender(); | ||
endif | ||
else (false) | ||
endif | ||
|
||
if (do redirect?) then (yes) | ||
:redirect process; | ||
else | ||
if (do forward?) then (yes) | ||
:Forward request; | ||
else (no) | ||
:Render page template; | ||
endif | ||
endif | ||
|
||
stop | ||
|
||
@enduml |
File renamed without changes.