Package | Description |
---|---|
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.runtime |
This package contains the classes that manage the secure runtime
environment for JNLP apps.
|
Modifier and Type | Class and Description |
---|---|
class |
MissingInformationException
Thrown when the required information tag is not found
under the current JVM's locale or as a generalized element.
|
class |
MissingTitleException
Thrown when a title that is required from the information tag is not found
under the current JVM's locale or as a generalized element.
|
class |
MissingVendorException
Thrown when a vendor that is required from the information tag is not found
under the current JVM's locale or as a generalized element.
|
class |
RequiredElementException
Thrown when a field that is required from the information tag is not found
under the current JVM's locale or as a generalized element.
|
Modifier and Type | Method and Description |
---|---|
JNLPFile |
JNLPCreator.create(java.net.URL location,
Version version,
boolean strict,
UpdatePolicy policy,
java.net.URL forceCodebase) |
void |
ExtensionDesc.resolve()
Resolves the extension by creating a JNLPFile from the file
specified by the extension's location property.
|
Constructor and Description |
---|
AssociationDesc(java.lang.String mimeType,
java.lang.String[] extensions) |
JNLPFile(java.io.InputStream input,
boolean strict)
Create a JNLPFile from an input stream.
|
JNLPFile(java.io.InputStream input,
java.net.URL codebase,
boolean strict)
Create a JNLPFile from an input stream.
|
JNLPFile(java.net.URL location)
Create a JNLPFile from a URL.
|
JNLPFile(java.net.URL location,
boolean strict)
Create a JNLPFile from a URL checking for updates using the
default policy.
|
JNLPFile(java.net.URL location,
java.lang.String uniqueKey,
Version version,
boolean strict,
UpdatePolicy policy)
Create a JNLPFile from a URL, parent URLm a version and checking for
updates using the specified policy.
|
JNLPFile(java.net.URL location,
Version version,
boolean strict)
Create a JNLPFile from a URL and a Version checking for updates using
the default policy.
|
JNLPFile(java.net.URL location,
Version version,
boolean strict,
UpdatePolicy policy)
Create a JNLPFile from a URL and a version, checking for updates
using the specified policy.
|
JNLPFile(java.net.URL location,
Version version,
boolean strict,
UpdatePolicy policy,
java.net.URL forceCodebase)
Create a JNLPFile from a URL and a version, checking for updates
using the specified policy.
|
JREDesc(Version version,
java.net.URL location,
java.lang.String vmArgs,
java.lang.String initialHeapSize,
java.lang.String maximumHeapSize,
java.util.List resources)
Create a JRE descriptor.
|
Modifier and Type | Method and Description |
---|---|
static JNLPClassLoader |
JNLPClassLoader.getInstance(java.net.URL location,
java.lang.String uniqueKey,
Version version,
UpdatePolicy policy,
java.lang.String mainName)
Returns a JNLP classloader for the JNLP file at the specified
location.
|