Package net.sourceforge.jnlp
Class GuiLaunchHandler
java.lang.Object
net.sourceforge.jnlp.AbstractLaunchHandler
net.sourceforge.jnlp.GuiLaunchHandler
- All Implemented Interfaces:
LaunchHandler
A
LaunchHandler
that gives feedback to the user using GUI elements
including splash screens and exception dialogs.-
Field Summary
Fields inherited from class net.sourceforge.jnlp.AbstractLaunchHandler
logger
-
Constructor Summary
ConstructorsConstructorDescriptionGuiLaunchHandler
(net.sourceforge.jnlp.util.logging.OutputController outputStream) -
Method Summary
Modifier and TypeMethodDescriptionvoid
launchCompleted
(ApplicationInstance application) Called when an application, applet, or installer has been launched successfully (the main method or applet start method returned normally).void
launchError
(LaunchException exception) Called when the application could not be launched due to a fatal error, such as the inability to find the main class or non-parseable XML.void
launchInitialized
(JNLPFile file) Called when an application, applet or installer has been determined.void
launchStarting
(ApplicationInstance application) Called when an application, applet or installer is ready to start.boolean
launchWarning
(LaunchException warning) Called when launching the application can not be launched due to an error that is not fatal.boolean
validationError
(LaunchException error) Called when a security validation error occurs while launching the application.Methods inherited from class net.sourceforge.jnlp.AbstractLaunchHandler
printMessage
-
Constructor Details
-
GuiLaunchHandler
public GuiLaunchHandler(net.sourceforge.jnlp.util.logging.OutputController outputStream)
-
-
Method Details
-
launchCompleted
Description copied from interface:LaunchHandler
Called when an application, applet, or installer has been launched successfully (the main method or applet start method returned normally).- Parameters:
application
- the launched application instance
-
launchError
Description copied from interface:LaunchHandler
Called when the application could not be launched due to a fatal error, such as the inability to find the main class or non-parseable XML.- Parameters:
exception
- to be re-thrown as launch error
-
launchStarting
Description copied from interface:LaunchHandler
Called when an application, applet or installer is ready to start. Good point to hide the splash screen.- Parameters:
application
- the application instance that is ready
-
launchInitialized
Description copied from interface:LaunchHandler
Called when an application, applet or installer has been determined. We have some very basic information about the application at this point, but do not have everything required. This is a nice point to show the splash screen.- Parameters:
file
- the JNLP file of the instance that is starting
-
launchWarning
Description copied from interface:LaunchHandler
Called when launching the application can not be launched due to an error that is not fatal. For example a JNLP file that is not strictly correct yet does not necessarily prohibit the system from attempting to launch the application.- Parameters:
warning
- exception to be consummed as warning- Returns:
- true if the launch should continue, false to abort
-
validationError
Description copied from interface:LaunchHandler
Called when a security validation error occurs while launching the application.- Parameters:
error
- to be rethrown as launch error- Returns:
- true to allow the application to continue, false to stop it.
-