Class Main

java.lang.Object
com.sun.javatest.tool.Main

public class Main extends Object
The main program class for JT Harness.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    Thrown when a bad command line argument is encountered.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    If this system property is defined then its value is expected to contain comma-separated list of CommandManager subclasses to load, which would be put in use instead of those contained in the dedicated file.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    main(String... args)
    Run JT Harness with command-line args.
    final void
    run(String[] args, CommandContext ctx)
    A routine to run JT Harness.
    final void
    run(String[] args, PrintWriter out)
    The main routine to run JT Harness.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • COMMAND_MANAGERS_TO_LOAD

      public static final String COMMAND_MANAGERS_TO_LOAD
      If this system property is defined then its value is expected to contain comma-separated list of CommandManager subclasses to load, which would be put in use instead of those contained in the dedicated file.
      See Also:
  • Constructor Details

    • Main

      public Main()
  • Method Details