Class Command


public class Command extends Object
Classe Command - une commande du jeu d'aventure Zuul.
Author:
Nathan DAMART-MOHN
  • Constructor Details

    • Command

      public Command(String pCommandWord, String pSecondWord)
      Natural constructor for the class Command
      Parameters:
      pCommandWord - Indicates the first word of the input command
      pSecondWord - Indicates the second word of the input command
  • Method Details

    • getCommandWord

      public String getCommandWord()
      Allows to access the first command word
      Returns:
      A string containing the first command word
    • getSecondWord

      public String 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