Class EnvironmentManager


  • public class EnvironmentManager
    extends CommandManager
    A command manager to handle the command line options for adding default values into every test environment. The supported options are:
    • -EsysProps: add all the system properties into every environment
    • -Ename=value: set name to value in every environment
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      HelpTree.Node getHelp()
      Get an object embodying the command line help for the commands managed by this CommandManager.
      boolean parseCommand​(java.lang.String cmd, java.util.ListIterator<java.lang.String> argIter, CommandContext ctx)
      Parse a command (and any arguments it might take).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getHelp

        public HelpTree.Node getHelp()
        Description copied from class: CommandManager
        Get an object embodying the command line help for the commands managed by this CommandManager.
        Specified by:
        getHelp in class CommandManager
        Returns:
        an object embodying the command line help for the commands managed by this CommandManager
      • parseCommand

        public boolean parseCommand​(java.lang.String cmd,
                                    java.util.ListIterator<java.lang.String> argIter,
                                    CommandContext ctx)
        Description copied from class: CommandManager
        Parse a command (and any arguments it might take).
        Specified by:
        parseCommand in class CommandManager
        Parameters:
        cmd - the command to be parsed
        argIter - an iterator from which to get any arguments that might be required by the option
        ctx - a context object to use while parsing the command
        Returns:
        true if the command is recognized and successfully parsed, or false if the command is not recognized by this command manager