| java.lang.Object org.hsqldb.util.MainInvoker
MainInvoker | public class MainInvoker (Code) | | Invokes the static main(String[]) method from each class specified.
This class will System.exit() if any invocation fails.
author: Blaine Simpson, unsaved@users since: HSQLDB 1.8.0 version: $Revision: 1.9 $ |
Method Summary | |
public static void | invoke(String className, String[] args) Invokes the static main(String[]) method from each specified class. | public static void | main(String[] sa) Invokes the static main(String[]) method from each specified class.
This method will System.exit() if any invocation fails.
Note that multiple class invocations are delimited by empty-string
parameters. |
main | public static void main(String[] sa)(Code) | | Invokes the static main(String[]) method from each specified class.
This method will System.exit() if any invocation fails.
Note that multiple class invocations are delimited by empty-string
parameters. How the user supplies these empty strings is determined
entirely by the caller's environment. From Windows this can
generally be accomplished with double-quotes like "". From all
popular UNIX shells, this can be accomplished with single or
double-quotes: '' or "".
Parameters: sa - Run java org.hsqldb.util.MainInvoker --help for syntax help |
|
|