Class VectorConsole

All Implemented Interfaces:
KeyListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible
Direct Known Subclasses:
JamaConsole

public class VectorConsole extends Console
Author:
Rich Morris Created on 21-Mar-2005
See Also:
  • Constructor Details

    • VectorConsole

      public VectorConsole()
  • Method Details

    • main

      public static void main(String[] args)
    • getPrompt

      public String getPrompt()
      Description copied from class: Console
      Prints the prompt string.
      Overrides:
      getPrompt in class Console
    • initialise

      public void initialise()
      Description copied from class: Console
      sets up all the needed objects.
      Overrides:
      initialise in class Console
    • printHelp

      public void printHelp()
      Description copied from class: Console
      Print help message.
      Overrides:
      printHelp in class Console
    • printIntroText

      public void printIntroText()
      Description copied from class: Console
      Prints introductory text.
      Overrides:
      printIntroText in class Console
    • testSpecialCommands

      public boolean testSpecialCommands(String command)
      Description copied from class: Console
      Checks for special commands used by subclasses. For example a subclass may have a verbose mode switched on of off using the command
      verbose on
      This method can be used detected this input, perform required actions and skip normal processing by returning true.
      Overrides:
      testSpecialCommands in class Console
      Parameters:
      command -
      Returns:
      true indicates normal processing should continue (default) false if the command is special and no further processing should be performed (parsing and evaluating)
      See Also: