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 |
Modifier and Type | Field and Description |
---|---|
protected ParserSettings |
JNLPFile.parserSettings
the ParserSettings which were used to parse this file
|
Modifier and Type | Method and Description |
---|---|
static ParserSettings |
ParserSettings.getGlobalParserSettings()
Return the global parser settings in use.
|
ParserSettings |
JNLPFile.getParserSettings()
Returns the ParserSettings that was used to parse this file
|
static ParserSettings |
ParserSettings.setGlobalParserSettingsFromArgs(java.lang.String[] cmdArgs)
Return the ParserSettings to be used according to arguments specified
at boot on the command line.
|
Modifier and Type | Method and Description |
---|---|
JNLPFile |
JNLPCreator.create(java.net.URL location,
Version version,
ParserSettings settings,
UpdatePolicy policy,
java.net.URL forceCodebase) |
static void |
ParserSettings.setGlobalParserSettings(ParserSettings parserSettings)
Set the global ParserSettings to match the given settings.
|
void |
Launcher.setParserSettings(ParserSettings settings)
Set the parser settings to use when the Launcher initiates parsing of
a JNLP file.
|
Constructor and Description |
---|
JNLPFile(java.io.InputStream input,
ParserSettings settings)
Create a JNLPFile from an input stream.
|
JNLPFile(java.io.InputStream input,
java.net.URL codebase,
ParserSettings settings)
Create a JNLPFile from an input stream.
|
JNLPFile(java.net.URL location,
ParserSettings settings)
Create a JNLPFile from a URL checking for updates using the
default policy.
|
JNLPFile(java.net.URL location,
java.lang.String uniqueKey,
Version version,
ParserSettings settings,
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,
ParserSettings settings)
Create a JNLPFile from a URL and a Version checking for updates using
the default policy.
|
JNLPFile(java.net.URL location,
Version version,
ParserSettings settings,
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,
ParserSettings settings,
UpdatePolicy policy,
java.net.URL forceCodebase)
Create a JNLPFile from a URL and a version, checking for updates
using the specified policy.
|
Modifier and Type | Method and Description |
---|---|
static JNLPClassLoader |
JNLPClassLoader.getInstance(java.net.URL location,
java.lang.String uniqueKey,
Version version,
ParserSettings settings,
UpdatePolicy policy,
java.lang.String mainName,
boolean enableCodeBase)
Returns a JNLP classloader for the JNLP file at the specified
location.
|