aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/view/Viewable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/esieequest/view/Viewable.java')
-rw-r--r--src/esieequest/view/Viewable.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/esieequest/view/Viewable.java b/src/esieequest/view/Viewable.java
index 5d2675f..d2aeaff 100644
--- a/src/esieequest/view/Viewable.java
+++ b/src/esieequest/view/Viewable.java
@@ -22,7 +22,7 @@ public interface Viewable {
22 * @param gameEngine 22 * @param gameEngine
23 * the GameEngine controller 23 * the GameEngine controller
24 */ 24 */
25 public void setController(GameEngine gameEngine); 25 public void setController(final GameEngine gameEngine);
26 26
27 /** 27 /**
28 * Displays the user interface. 28 * Displays the user interface.
@@ -40,7 +40,7 @@ public interface Viewable {
40 * @param message 40 * @param message
41 * the message 41 * the message
42 */ 42 */
43 public void echo(String message); 43 public void echo(final String message);
44 44
45 /** 45 /**
46 * Disables the user interface. 46 * Disables the user interface.
@@ -57,7 +57,7 @@ public interface Viewable {
57 * @param side 57 * @param side
58 * the side of a room 58 * the side of a room
59 */ 59 */
60 public void updateLocation(Room room, Direction direction, Side side); 60 public void updateLocation(final Room room, final Direction direction, final Side side);
61 61
62 /** 62 /**
63 * Updates the view to match the current quest. 63 * Updates the view to match the current quest.
@@ -65,7 +65,7 @@ public interface Viewable {
65 * @param quest 65 * @param quest
66 * the current quest to display 66 * the current quest to display
67 */ 67 */
68 public void updateQuest(Quest quest); 68 public void updateQuest(final Quest quest);
69 69
70 /** 70 /**
71 * Updates the view to display the items contained in the inventory 71 * Updates the view to display the items contained in the inventory
@@ -73,6 +73,6 @@ public interface Viewable {
73 * @param items 73 * @param items
74 * the items 74 * the items
75 */ 75 */
76 public void updateInventory(HashMap<String, SimpleItem> items); 76 public void updateInventory(final HashMap<String, SimpleItem> items);
77 77
78} 78}