Class Command
java.lang.Object
Command
Classe Command - une commande du jeu d'aventure Zuul.
- Author:
- Nathan DAMART-MOHN
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAllows to access the first command wordAllows to access the second command wordboolean
Indicates if a second word in the command existsboolean
Idicates if the command is in the list of known commands
-
Constructor Details
-
Command
Natural constructor for the class Command- Parameters:
pCommandWord
- Indicates the first word of the input commandpSecondWord
- Indicates the second word of the input command
-
-
Method Details
-
getCommandWord
Allows to access the first command word- Returns:
- A string containing the first command word
-
getSecondWord
Allows to access the second command word- Returns:
- A string containing the second command word
-
hasSecondWord
public boolean hasSecondWord()Indicates if a second word in the command exists- Returns:
- A boolean indicating if a second word exists
-
isUnknown
public boolean isUnknown()Idicates if the command is in the list of known commands- Returns:
- A boolean indicating if the command is known or not
-