IcedTea-Web
NetX

Uses of Class
net.sourceforge.jnlp.JNLPFile

Packages that use JNLPFile
net.sourceforge.jnlp This package contains the classes that represent the parts of a Java Network Launching Protocol (JNLP) file as objects, and a way to launch a JNLP file as an application, applet, or installer. 
net.sourceforge.jnlp.security   
net.sourceforge.jnlp.services This package contains the classes that implement the standard services defined by the JNLP specification. 
net.sourceforge.jnlp.util   
 

Uses of JNLPFile in net.sourceforge.jnlp
 

Subclasses of JNLPFile in net.sourceforge.jnlp
 class PluginBridge
           
 

Methods in net.sourceforge.jnlp that return JNLPFile
 JNLPFile LaunchException.getFile()
          Returns the JNLPFile being launched.
 JNLPFile InformationDesc.getJNLPFile()
          Returns the JNLPFile the information is for.
 JNLPFile ExtensionDesc.getJNLPFile()
          Returns a JNLPFile for the extension, or null if the JNLP file has not been resolved.
 JNLPFile ResourcesDesc.getJNLPFile()
          Returns the JNLPFile the resources are for.
 

Methods in net.sourceforge.jnlp with parameters of type JNLPFile
protected  net.sourceforge.jnlp.runtime.AppletInstance Launcher.createApplet(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Create an AppletInstance.
protected  java.applet.Applet Launcher.createAppletObject(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Creates an Applet object from a JNLPFile.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance Launcher.createApplication(JNLPFile file)
          Creates an Application.
protected  net.sourceforge.jnlp.runtime.AppThreadGroup Launcher.createThreadGroup(JNLPFile file)
          Create a thread group for the JNLP file.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance Launcher.getApplet(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Gets an ApplicationInstance, but does not launch the applet.
 net.sourceforge.jnlp.runtime.ApplicationInstance Launcher.launch(JNLPFile file)
          Launches a JNLP file by calling the launch method for the appropriate file type.
 net.sourceforge.jnlp.runtime.ApplicationInstance Launcher.launch(JNLPFile file, java.awt.Container cont)
          Launches a JNLP file inside the given container if it is an applet.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance Launcher.launchApplet(JNLPFile file, boolean enableCodeBase, java.awt.Container cont)
          Launches a JNLP applet.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance Launcher.launchApplication(JNLPFile file)
          Launches a JNLP application.
 void Launcher.launchBackground(JNLPFile file)
          Launches a JNLP file by calling the launch method for the appropriate file type in a different thread.
 void Launcher.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.
protected  net.sourceforge.jnlp.runtime.ApplicationInstance Launcher.launchInstaller(JNLPFile file)
          Launches a JNLP installer.
 

Constructors in net.sourceforge.jnlp with parameters of type JNLPFile
InformationDesc(JNLPFile jnlpFile, java.util.Locale[] locales)
          Create an information element object.
LaunchException(JNLPFile file, java.lang.Exception cause, java.lang.String severity, java.lang.String category, java.lang.String summary, java.lang.String description)
          Creates a LaunchException without detail message.
ResourcesDesc(JNLPFile jnlpFile, java.util.Locale[] locales, java.lang.String[] os, java.lang.String[] arch)
          Create a representation of one information section of the JNLP File.
SecurityDesc(JNLPFile file, java.lang.Object type, java.lang.String downloadHost)
          Create a security descriptor.
 

Uses of JNLPFile in net.sourceforge.jnlp.security
 

Methods in net.sourceforge.jnlp.security that return JNLPFile
 JNLPFile SecurityWarningDialog.getFile()
           
 

Methods in net.sourceforge.jnlp.security with parameters of type JNLPFile
static boolean SecurityWarning.showAccessWarningDialog(SecurityWarning.AccessType accessType, JNLPFile file)
          Shows a warning dialog for different types of system access (i.e.
static boolean SecurityWarning.showAccessWarningDialog(SecurityWarning.AccessType accessType, JNLPFile file, java.lang.Object[] extras)
          Shows a warning dialog for different types of system access (i.e.
static boolean SecurityWarning.showCertWarningDialog(SecurityWarning.AccessType accessType, JNLPFile file, CertVerifier jarSigner)
          Shows a security warning dialog according to the specified type of access.
static boolean SecurityWarning.showNotAllSignedWarningDialog(JNLPFile file)
          Shows a warning dialog for when the main application jars are signed, but extensions aren't
 

Uses of JNLPFile in net.sourceforge.jnlp.services
 

Methods in net.sourceforge.jnlp.services with parameters of type JNLPFile
static void ServiceUtil.checkExistingSingleInstance(JNLPFile jnlpFile)
          Checks that this application (represented by the jnlp) isnt already running
 void XSingleInstanceService.checkSingleInstanceRunning(JNLPFile jnlpFile)
          Check if another instance of this application is already running
 

Uses of JNLPFile in net.sourceforge.jnlp.util
 

Constructors in net.sourceforge.jnlp.util with parameters of type JNLPFile
XDesktopEntry(JNLPFile file)
          Create a XDesktopEntry for the given JNLP file
 


IcedTea-Web
NetX

Submit a bug or feature