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 | 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() |
ParserSettings |
JNLPFile.getParserSettings() |
static ParserSettings |
ParserSettings.setGlobalParserSettingsFromOptionParser(net.sourceforge.jnlp.util.optionparser.OptionParser optionParser) |
Modifier and Type | Method and Description |
---|---|
JNLPFile |
JNLPCreator.create(java.net.URL location,
Version version,
ParserSettings settings,
UpdatePolicy policy,
java.net.URL forceCodebase) |
static java.lang.Object |
Parser.getParserInstance(ParserSettings settings) |
static Node |
Parser.getRootNode(java.io.InputStream input,
ParserSettings settings) |
static void |
ParserSettings.setGlobalParserSettings(ParserSettings parserSettings)
Set the global ParserSettings to match the given settings.
|
void |
Launcher.setParserSettings(ParserSettings settings) |
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.
|
JNLPMatcher(java.io.InputStream appTemplate,
java.io.InputStream launchJNLP,
boolean isTemplate,
ParserSettings p)
Public constructor
|
Parser(JNLPFile file,
java.net.URL base,
Node root,
ParserSettings settings)
Create a parser for the JNLP file.
|
Parser(JNLPFile file,
java.net.URL base,
Node root,
ParserSettings settings,
java.net.URL codebase)
Create a parser for the JNLP file.
|
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.
|