IcedTea-Web
NetX

net.sourceforge.jnlp
Class Launcher

java.lang.Object
  extended by net.sourceforge.jnlp.Launcher

public class Launcher
extends java.lang.Object

Launches JNLPFiles either in the foreground or background.

An optional LaunchHandler can be specified that is notified of warning and error condition while launching and that indicates whether a launch may proceed after a warning has occurred. If specified, the LaunchHandler is notified regardless of whether the file is launched in the foreground or background.


Constructor Summary
Launcher()
          Create a launcher with the runtime's default update policy and launch handler.
Launcher(boolean exitOnFailure)
          Create a launcher with the runtime's default update policy and launch handler.
Launcher(LaunchHandler handler)
          Create a launcher with the specified handler and the runtime's default update policy.
Launcher(LaunchHandler handler, UpdatePolicy policy)
          Create a launcher with an optional handler using the specified update policy and launch handler.
 
Method Summary
protected  net.sourceforge.jnlp.runtime.AppletInstance createApplet(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Create an AppletInstance.
protected  java.applet.Applet createAppletObject(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Creates an Applet object from a JNLPFile.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance createApplication(JNLPFile file)
          Creates an Application.
protected  net.sourceforge.jnlp.runtime.AppThreadGroup createThreadGroup(JNLPFile file)
          Create a thread group for the JNLP file.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance getApplet(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Gets an ApplicationInstance, but does not launch the applet.
 UpdatePolicy getUpdatePolicy()
          Returns the update policy used when launching applications.
 boolean isCreateAppContext()
          Returns whether applications are launched in their own AppContext.
 net.sourceforge.jnlp.runtime.ApplicationInstance launch(JNLPFile file)
          Launches a JNLP file by calling the launch method for the appropriate file type.
 net.sourceforge.jnlp.runtime.ApplicationInstance launch(JNLPFile file, java.awt.Container cont)
          Launches a JNLP file inside the given container if it is an applet.
 net.sourceforge.jnlp.runtime.ApplicationInstance launch(java.net.URL location)
          Launches a JNLP file by calling the launch method for the appropriate file type.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance launchApplet(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Launches a JNLP applet.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance launchApplication(JNLPFile file)
          Launches a JNLP application.
 void launchBackground(JNLPFile file)
          Launches a JNLP file by calling the launch method for the appropriate file type in a different thread.
 void launchBackground(java.net.URL location)
          Launches the JNLP file at the specified location in the background by calling the launch method for its file type.
 void launchExternal(java.util.List<java.lang.String> vmArgs, JNLPFile file, java.util.List<java.lang.String> javawsArgs)
          Launches the JNLP file in a new JVM instance.
 void launchExternal(java.util.List<java.lang.String> vmArgs, java.util.List<java.lang.String> javawsArgs)
          Launches the JNLP file at the specified location in a new JVM instance.
 void launchExternal(java.net.URL url)
          Launches the JNLP file in a new JVM instance.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance launchInstaller(JNLPFile file)
          Launches a JNLP installer.
 void setCreateAppContext(boolean context)
          Sets whether to launch the application in a new AppContext (a separate event queue, look and feel, etc).
 void setUpdatePolicy(UpdatePolicy policy)
          Sets the update policy used by launched applications.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Launcher

public Launcher()
Create a launcher with the runtime's default update policy and launch handler.


Launcher

public Launcher(boolean exitOnFailure)
Create a launcher with the runtime's default update policy and launch handler.

Parameters:
exitOnFailure - Exit if there is an error (usually default, but false when being used from the plugin)

Launcher

public Launcher(LaunchHandler handler)
Create a launcher with the specified handler and the runtime's default update policy.

Parameters:
handler - the handler to use or null for no handler.

Launcher

public Launcher(LaunchHandler handler,
                UpdatePolicy policy)
Create a launcher with an optional handler using the specified update policy and launch handler.

Parameters:
handler - the handler to use or null for no handler.
policy - the update policy to use or null for default policy.
Method Detail

setUpdatePolicy

public void setUpdatePolicy(UpdatePolicy policy)
Sets the update policy used by launched applications.


getUpdatePolicy

public UpdatePolicy getUpdatePolicy()
Returns the update policy used when launching applications.


setCreateAppContext

public void setCreateAppContext(boolean context)
Sets whether to launch the application in a new AppContext (a separate event queue, look and feel, etc). If the sun.awt.SunToolkit class is not present then this method has no effect. The default value is true.


isCreateAppContext

public boolean isCreateAppContext()
Returns whether applications are launched in their own AppContext.


launch

public net.sourceforge.jnlp.runtime.ApplicationInstance launch(JNLPFile file)
                                                        throws LaunchException
Launches a JNLP file by calling the launch method for the appropriate file type. The application will be started in a new window.

Parameters:
file - the JNLP file to launch
Returns:
the application instance
Throws:
LaunchException - if an error occurred while launching (also sent to handler)

launch

public net.sourceforge.jnlp.runtime.ApplicationInstance launch(JNLPFile file,
                                                               java.awt.Container cont)
                                                        throws LaunchException
Launches a JNLP file inside the given container if it is an applet. Specifying a container has no effect for Applcations and Installers.

Parameters:
file - the JNLP file to launch
cont - the container in which to place the application, if it is an applet
Returns:
the application instance
Throws:
LaunchException - if an error occurred while launching (also sent to handler)

launch

public net.sourceforge.jnlp.runtime.ApplicationInstance launch(java.net.URL location)
                                                        throws LaunchException
Launches a JNLP file by calling the launch method for the appropriate file type.

Parameters:
location - the URL of the JNLP file to launch
Returns:
the application instance
Throws:
LaunchException - if there was an exception

launchBackground

public void launchBackground(JNLPFile file)
Launches a JNLP file by calling the launch method for the appropriate file type in a different thread.

Parameters:
file - the JNLP file to launch

launchBackground

public void launchBackground(java.net.URL location)
Launches the JNLP file at the specified location in the background by calling the launch method for its file type.

Parameters:
location - the location of the JNLP file

launchExternal

public void launchExternal(java.util.List<java.lang.String> vmArgs,
                           JNLPFile file,
                           java.util.List<java.lang.String> javawsArgs)
                    throws LaunchException
Launches the JNLP file in a new JVM instance. The launched application's output is sent to the system out and it's standard input channel is closed.

Parameters:
vmArgs - the arguments to pass to the new JVM. Can be empty but must not be null.
file - the JNLP file to launch
javawsArgs - the arguments to pass to the javaws command. Can be an empty list but must not be null.
Throws:
LaunchException - if there was an exception

launchExternal

public void launchExternal(java.net.URL url)
                    throws LaunchException
Launches the JNLP file in a new JVM instance. The launched application's output is sent to the system out and it's standard input channel is closed.

Parameters:
url - the URL of the JNLP file to launch
Throws:
LaunchException - if there was an exception

launchExternal

public void launchExternal(java.util.List<java.lang.String> vmArgs,
                           java.util.List<java.lang.String> javawsArgs)
                    throws LaunchException
Launches the JNLP file at the specified location in a new JVM instance. The launched application's output is sent to the system out and it's standard input channel is closed.

Parameters:
vmArgs - the arguments to pass to the jvm
javawsArgs - the arguments to pass to javaws (aka Netx)
Throws:
LaunchException - if there was an exception

launchApplication

protected net.sourceforge.jnlp.runtime.ApplicationInstance launchApplication(JNLPFile file)
                                                                      throws LaunchException
Launches a JNLP application. This method should be called from a thread in the application's thread group.

Throws:
LaunchException

launchApplet

protected net.sourceforge.jnlp.runtime.ApplicationInstance launchApplet(JNLPFile file,
                                                                        boolean enableCodeBase,
                                                                        java.awt.Container cont)
                                                                 throws LaunchException
Launches a JNLP applet. This method should be called from a thread in the application's thread group.

The enableCodeBase parameter adds the applet's codebase to the locations searched for resources and classes. This can slow down the applet loading but allows browser-style applets that don't use JAR files exclusively to be run from a applet JNLP file. If the applet JNLP file does not specify any resources then the code base will be enabled regardless of the specified value.

Parameters:
file - the JNLP file
enableCodeBase - whether to add the codebase URL to the classloader
Throws:
LaunchException

getApplet

protected net.sourceforge.jnlp.runtime.ApplicationInstance getApplet(JNLPFile file,
                                                                     boolean enableCodeBase,
                                                                     java.awt.Container cont)
                                                              throws LaunchException
Gets an ApplicationInstance, but does not launch the applet.

Throws:
LaunchException

launchInstaller

protected net.sourceforge.jnlp.runtime.ApplicationInstance launchInstaller(JNLPFile file)
                                                                    throws LaunchException
Launches a JNLP installer. This method should be called from a thread in the application's thread group.

Throws:
LaunchException

createApplet

protected net.sourceforge.jnlp.runtime.AppletInstance createApplet(JNLPFile file,
                                                                   boolean enableCodeBase,
                                                                   java.awt.Container cont)
                                                            throws LaunchException
Create an AppletInstance.

Parameters:
enableCodeBase - whether to add the code base URL to the classloader
Throws:
LaunchException

createAppletObject

protected java.applet.Applet createAppletObject(JNLPFile file,
                                                boolean enableCodeBase,
                                                java.awt.Container cont)
                                         throws LaunchException
Creates an Applet object from a JNLPFile. This is mainly to be used with gcjwebplugin.

Parameters:
file - the PluginBridge to be used.
enableCodeBase - whether to add the code base URL to the classloader.
Throws:
LaunchException

createApplication

protected net.sourceforge.jnlp.runtime.ApplicationInstance createApplication(JNLPFile file)
                                                                      throws LaunchException
Creates an Application.

Throws:
LaunchException

createThreadGroup

protected net.sourceforge.jnlp.runtime.AppThreadGroup createThreadGroup(JNLPFile file)
Create a thread group for the JNLP file. Note: if the JNLPFile is an applet (ie it is a subclass of PluginBridge) then this method simply returns the existing ThreadGroup. The applet ThreadGroup has to be created at an earlier point in the applet code.


IcedTea-Web
NetX

Submit a bug or feature