Skip to content

Commit

Permalink
Add images to devguide
Browse files Browse the repository at this point in the history
  • Loading branch information
irvinlim committed Nov 7, 2016
1 parent d5010f8 commit 8ff2025
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ public void componentDidMount() {

### InputHandler component

<img src="images/InputHandler.png"><br>

The InputHandler is the bridge facilitating the handoff from the View to the Controller when the user enters an input.

**API** : [`InputHandler.java`](../src/main/java/seedu/todo/ui/components/InputHandler.java)
Expand All @@ -190,6 +192,8 @@ The InputHandler is the bridge facilitating the handoff from the View to the Con

### Controller component

<img src="images/Controller.png"><br>

The Controllers are responsible for most of the back-end logic responsible for processing the user's input. They take in the full input command, parse, process, and construct the response messages which are handed over to the Renderer to be rendered on the View.

**API** : [`Controller.java`](../src/main/java/seedu/todo/logic/Logic.java)
Expand Down Expand Up @@ -229,6 +233,8 @@ A Model represents a single database record that is part of the persistent state

### Storage component

<img src="images/Storage.png"><br>

**API** : [`Storage.java`](../src/main/java/seedu/todo/storage/Storage.java)

The `Storage` module should be considered to be a black box which provides read/write functionality and a few bonus features to the TodoListDB. This can be compared to a MySQL database implementation - no one needs to know how this is implemented, and in actual fact our implementation does little more than wrap around a serializer / deserializer in order to provide undo/redo functionality.
Expand Down
Binary file added docs/images/Controller.png
Loading
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/InputHandler.png
Loading
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/Storage.png
Loading
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 8ff2025

Please sign in to comment.