diff options
author | Thomas Meyer <[email protected]> | 2012-08-19 16:49:54 +0200 |
---|---|---|
committer | Thomas Meyer <[email protected]> | 2012-08-19 16:49:54 +0200 |
commit | bc74d798767c5d23cfc1f599421896e915bb2923 (patch) | |
tree | 54848300185e47ff320bfa918c962153f1a94869 /netx | |
parent | c875f9fd93337f6ac0b6d3806b0238024b5896f8 (diff) |
Fix some javadoc warnings
Diffstat (limited to 'netx')
6 files changed, 7 insertions, 6 deletions
diff --git a/netx/net/sourceforge/jnlp/JNLPFile.java b/netx/net/sourceforge/jnlp/JNLPFile.java index 5fc626e..137bfff 100644 --- a/netx/net/sourceforge/jnlp/JNLPFile.java +++ b/netx/net/sourceforge/jnlp/JNLPFile.java @@ -780,7 +780,7 @@ public class JNLPFile { * jars it finds through getResourcesDescs(). If ever the implementation * of that function should change to return copies of JARDescs objects, * then the "jar == aJar" comparison below should change accordingly. - * @param jar: the jar whose download options to get. + * @param jar the jar whose download options to get. * @return the download options. */ public DownloadOptions getDownloadOptionsForJar(JARDesc jar) { diff --git a/netx/net/sourceforge/jnlp/LaunchHandler.java b/netx/net/sourceforge/jnlp/LaunchHandler.java index 7d6728c..2550217 100644 --- a/netx/net/sourceforge/jnlp/LaunchHandler.java +++ b/netx/net/sourceforge/jnlp/LaunchHandler.java @@ -61,7 +61,7 @@ public interface LaunchHandler { * but do not have everything required. This is a nice point to show the * splash screen. * - * @param application the application instance that is starting + * @param file the JNLP file of the instance that is starting */ public void launchInitialized(JNLPFile file); diff --git a/netx/net/sourceforge/jnlp/PluginBridge.java b/netx/net/sourceforge/jnlp/PluginBridge.java index 188a70d..c7b8f28 100644 --- a/netx/net/sourceforge/jnlp/PluginBridge.java +++ b/netx/net/sourceforge/jnlp/PluginBridge.java @@ -211,7 +211,7 @@ public class PluginBridge extends JNLPFile { } /** - * {@inheritdoc } + * {@inheritDoc } */ @Override public DownloadOptions getDownloadOptionsForJar(JARDesc jar) { diff --git a/netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java b/netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java index ad9a540..8b49097 100644 --- a/netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java +++ b/netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java @@ -58,7 +58,7 @@ public class ResourceUrlCreator { * Returns a list of URLs that the resources might be downloadable from. * The Resources may not be downloadable from any of them. The returned order is the order * the urls should be attempted in. - * @return + * @return a list of URLs that the resources might be downloadable from */ public List<URL> getUrls() { List<URL> urls = new LinkedList<URL>(); diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java index bb115aa..5ec2e70 100644 --- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java +++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java @@ -207,7 +207,8 @@ public class JNLPClassLoader extends URLClassLoader { * Create a new JNLPClassLoader from the specified file. * * @param file the JNLP file - * @param name of the application's main class + * @param policy the UpdatePolicy for this class loader + * @param mainName name of the application's main class */ protected JNLPClassLoader(JNLPFile file, UpdatePolicy policy, String mainName) throws LaunchException { super(new URL[0], JNLPClassLoader.class.getClassLoader()); diff --git a/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java b/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java index 9f632f4..c3f90ae 100644 --- a/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java +++ b/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java @@ -59,7 +59,7 @@ import org.mozilla.javascript.Scriptable; * Represents a Proxy Auto Config file. This object can be used to evaluate the * proxy file to find the proxy for a given url. * - * @see http://en.wikipedia.org/wiki/Proxy_auto-config#The_PAC_file + * @see "http://en.wikipedia.org/wiki/Proxy_auto-config#The_PAC_file" */ public class RhinoBasedPacEvaluator implements PacEvaluator { |