-
Notifications
You must be signed in to change notification settings - Fork 711
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 #261 from yongqqqq/branch-PED-bugfixes
Update UG to state case-sensitivity
- Loading branch information
Showing
4 changed files
with
57 additions
and
8 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,39 @@ | ||
@startuml | ||
skin rose | ||
skinparam ActivityFontSize 15 | ||
skinparam ArrowFontSize 12 | ||
start | ||
|
||
:User enters a command; | ||
:Parser parses the command; | ||
|
||
if () then ([valid command]) | ||
if () then ([Exit Command]) | ||
:Exit command is created; | ||
:Exit command is executed; | ||
stop | ||
else ([not Exit Command]) | ||
if () then ([Help Command]) | ||
:Help command is created; | ||
:Help command is executed; | ||
:UI displays Help window; | ||
stop | ||
else ([Other commands]) | ||
:Respective parser parses arguments of specified command; | ||
if () then ([valid format]) | ||
:Command is created; | ||
:Command is executed; | ||
:UI displays executed message; | ||
stop | ||
else ([invalid format]) | ||
:UI displays an error message; | ||
stop | ||
endif | ||
endif | ||
endif | ||
else ([invalid command]) | ||
:UI displays an error message; | ||
stop | ||
endif | ||
|
||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.