Skip to content

Commit

Permalink
Merge fe88132 into edad552
Browse files Browse the repository at this point in the history
  • Loading branch information
j-lum committed Sep 8, 2019
2 parents edad552 + fe88132 commit 3b8e144
Show file tree
Hide file tree
Showing 14 changed files with 476 additions and 0 deletions.
34 changes: 34 additions & 0 deletions docs/diagrams/add-remark/CommandInterface.puml
@@ -0,0 +1,34 @@
@startuml
!include ../style.puml

Class "{abstract}\nCommand" as Command LOGIC_COLOR_T1{
---
+ {abstract} execute(Model) : CommandResult
}

Class CommandException LOGIC_COLOR_T1

Class RemarkCommand LOGIC_COLOR_T1{
+ COMMAND_WORD : String
+ MESSAGE_USAGE : String
+ MESSAGE_NOT_IMPLEMENTED_YET: String
'Empty spaces to ensure that box resizes to fit text

'Do _not_ change the previous line
---
+ execute(Model) : CommandResult
}

RemarkCommand -up-|> Command
RemarkCommand -up[hidden]-|> Command
RemarkCommand .right.> CommandException : > throws
Command .right.> CommandException : > throws


skinparam classAttributeIconSize 0
skinparam classFontColor #000000
hide circle
show members
hide CommandException members
@enduml

19 changes: 19 additions & 0 deletions docs/diagrams/add-remark/ParserInterface.puml
@@ -0,0 +1,19 @@
@startuml
!include ../style.puml
Interface Parser LOGIC_COLOR_T1

Class RemarkCommandParser LOGIC_COLOR_T1{
+parse : RemarkCommand
}

Class ParserException LOGIC_COLOR_T1

RemarkCommandParser -up-|> Parser
Parser .right.> ParserException : throws

show members

skinparam classFontColor #000000
skinparam classAttributeIconSize 0
@enduml

Binary file added docs/images/add-remark/$Remark.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/CommandInterface.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/ContextMenu.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/CreateTest.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/GradleRun.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/ParserInterface.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/RemarkBound.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/RemarkComplete.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/RemarkFailureOutput.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/RemarkHello.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/add-remark/RemarkNotImplemented.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3b8e144

Please sign in to comment.