diff options
-rw-r--r-- | src/esieequest/controller/GameEngine.java | 4 | ||||
-rw-r--r-- | src/esieequest/model/Game.java | 4 | ||||
-rw-r--r-- | src/esieequest/view/Viewable.java | 4 | ||||
-rw-r--r-- | src/esieequest/view/app/UserInterface.java | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/esieequest/controller/GameEngine.java b/src/esieequest/controller/GameEngine.java index 8e53888..8e16ea1 100644 --- a/src/esieequest/controller/GameEngine.java +++ b/src/esieequest/controller/GameEngine.java | |||
@@ -59,8 +59,8 @@ public class GameEngine { | |||
59 | /** | 59 | /** |
60 | * Interprets a command. | 60 | * Interprets a command. |
61 | * | 61 | * |
62 | * @param commandString | 62 | * @param inputString |
63 | * the command String | 63 | * the input String |
64 | */ | 64 | */ |
65 | public void interpret(final String inputString) { | 65 | public void interpret(final String inputString) { |
66 | final Input input = new Input(inputString/* .toLowerCase() */); | 66 | final Input input = new Input(inputString/* .toLowerCase() */); |
diff --git a/src/esieequest/model/Game.java b/src/esieequest/model/Game.java index 2a6a31b..65380c1 100644 --- a/src/esieequest/model/Game.java +++ b/src/esieequest/model/Game.java | |||
@@ -48,8 +48,8 @@ public class Game implements SerialisableObject { | |||
48 | /** | 48 | /** |
49 | * Creates a Game with a step limit for the Player. | 49 | * Creates a Game with a step limit for the Player. |
50 | * | 50 | * |
51 | * @param maxNbSteps | 51 | * @param challenge |
52 | * the step limit for the Player | 52 | * the value of challenge mode |
53 | */ | 53 | */ |
54 | public Game(final boolean challenge) { | 54 | public Game(final boolean challenge) { |
55 | this.challenge = challenge; | 55 | this.challenge = challenge; |
diff --git a/src/esieequest/view/Viewable.java b/src/esieequest/view/Viewable.java index c650759..1df7e12 100644 --- a/src/esieequest/view/Viewable.java +++ b/src/esieequest/view/Viewable.java | |||
@@ -70,8 +70,8 @@ public interface Viewable { | |||
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 |
72 | * | 72 | * |
73 | * @param items | 73 | * @param inventory |
74 | * the items | 74 | * the Inventory |
75 | */ | 75 | */ |
76 | public void updateInventory(final Inventory inventory); | 76 | public void updateInventory(final Inventory inventory); |
77 | 77 | ||
diff --git a/src/esieequest/view/app/UserInterface.java b/src/esieequest/view/app/UserInterface.java index fee5427..f2b97f8 100644 --- a/src/esieequest/view/app/UserInterface.java +++ b/src/esieequest/view/app/UserInterface.java | |||
@@ -412,8 +412,8 @@ abstract class UserInterface implements Viewable, ActionListener { | |||
412 | /** | 412 | /** |
413 | * Sets the quest title. | 413 | * Sets the quest title. |
414 | * | 414 | * |
415 | * @param quest | 415 | * @param questTitle |
416 | * the quest title | 416 | * the title of the Quest |
417 | */ | 417 | */ |
418 | private void setQuestLabel(final String questTitle) { | 418 | private void setQuestLabel(final String questTitle) { |
419 | this.questTextPane.setText(questTitle); | 419 | this.questTextPane.setText(questTitle); |