/*--------------------------------------------------------------- * 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); }
/** * Registers the daemon implementation with the Tanuki wrapper * * @param argv startup parameters (if any) */ protected void registerImplementation(String[] argv) { WrapperManager.start(this, argv); }
public final void startWrapped() { WrapperManager.start(listener, args); }
public static void main(String[] args) { WrapperManager.start(new ControllerWrapper(), args); }