/*---------------------------------------------------------------
   * Main Method
   *-------------------------------------------------------------*/
  public static void main(String[] args) {
    // Test an initial line feed as a regression test.  Must be
    //  the first output from the JVM
    System.out.println();

    System.out.println("LoadedWrapperListener.main");

    WrapperManager.start(new LoadedWrapperListener(), args);
  }
Exemplo n.º 2
0
 /**
  * Registers the daemon implementation with the Tanuki wrapper
  *
  * @param argv startup parameters (if any)
  */
 protected void registerImplementation(String[] argv) {
   WrapperManager.start(this, argv);
 }
Exemplo n.º 3
0
 public final void startWrapped() {
   WrapperManager.start(listener, args);
 }
Exemplo n.º 4
0
 public static void main(String[] args) {
   WrapperManager.start(new ControllerWrapper(), args);
 }