Package net.sourceforge.jnlp.runtime
Class Boot
- java.lang.Object
-
- net.sourceforge.jnlp.runtime.Boot
-
- All Implemented Interfaces:
java.security.PrivilegedAction<java.lang.Void>
public final class Boot extends java.lang.Object implements java.security.PrivilegedAction<java.lang.Void>
This is the main entry point for the JNLP client. The main method parses the command line parameters and loads a JNLP file into the secure runtime environment. This class is meant to be called from the command line or file association; to initialize the netx engine from other code invoke theJNLPRuntime.initialize(boolean)
method after configuring the runtime.
-
-
Constructor Summary
Constructors Constructor Description Boot()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static net.sourceforge.jnlp.util.optionparser.OptionParser
getOptionParser()
static void
main(java.lang.String[] argsIn)
Launch the JNLP file specified by the command-line arguments.java.lang.Void
run()
The privileged part (jdk1.3 compatibility).
-
-
-
Method Detail
-
getOptionParser
public static net.sourceforge.jnlp.util.optionparser.OptionParser getOptionParser()
-
main
public static void main(java.lang.String[] argsIn) throws net.sourceforge.jnlp.util.optionparser.UnevenParameterException
Launch the JNLP file specified by the command-line arguments.- Parameters:
argsIn
- launching arguments- Throws:
net.sourceforge.jnlp.util.optionparser.UnevenParameterException
-
run
public java.lang.Void run()
The privileged part (jdk1.3 compatibility).- Specified by:
run
in interfacejava.security.PrivilegedAction<java.lang.Void>
-
-