changeset 503:10fbfc9fbff0

Fix some javadoc warnings
author Thomas Meyer <thomas@m3y3r.de>
date Sun, 19 Aug 2012 16:49:54 +0200
parents 4c7ca163824c
children 6e84854aecba
files ChangeLog netx/net/sourceforge/jnlp/JNLPFile.java netx/net/sourceforge/jnlp/LaunchHandler.java netx/net/sourceforge/jnlp/PluginBridge.java netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java
diffstat 7 files changed, 17 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Aug 17 17:16:25 2012 +0200
+++ b/ChangeLog	Sun Aug 19 16:49:54 2012 +0200
@@ -1,3 +1,13 @@
+2012-08-19  Thomas Meyer  <thomas@m3y3r.de>
+
+	* netx/net/sourceforge/jnlp/JNLPFile.java:
+	* netx/net/sourceforge/jnlp/LaunchHandler.java:
+	* netx/net/sourceforge/jnlp/PluginBridge.java:
+	* netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java:
+	* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java:
+	* netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java:
+	Fix javadoc warnings.
+
 2012-08-18  Jiri Vanek  <jvanek@redhat.com>
 
 	added encodings reproducer (PR1108)
--- a/netx/net/sourceforge/jnlp/JNLPFile.java	Fri Aug 17 17:16:25 2012 +0200
+++ b/netx/net/sourceforge/jnlp/JNLPFile.java	Sun Aug 19 16:49:54 2012 +0200
@@ -780,7 +780,7 @@
      * 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) {
--- a/netx/net/sourceforge/jnlp/LaunchHandler.java	Fri Aug 17 17:16:25 2012 +0200
+++ b/netx/net/sourceforge/jnlp/LaunchHandler.java	Sun Aug 19 16:49:54 2012 +0200
@@ -61,7 +61,7 @@
      * 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);
 
--- a/netx/net/sourceforge/jnlp/PluginBridge.java	Fri Aug 17 17:16:25 2012 +0200
+++ b/netx/net/sourceforge/jnlp/PluginBridge.java	Sun Aug 19 16:49:54 2012 +0200
@@ -211,7 +211,7 @@
     }
 
     /**
-     * {@inheritdoc }
+     * {@inheritDoc }
      */
     @Override
     public DownloadOptions getDownloadOptionsForJar(JARDesc jar) {
--- a/netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java	Fri Aug 17 17:16:25 2012 +0200
+++ b/netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java	Sun Aug 19 16:49:54 2012 +0200
@@ -58,7 +58,7 @@
      * 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>();
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Fri Aug 17 17:16:25 2012 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Sun Aug 19 16:49:54 2012 +0200
@@ -207,7 +207,8 @@
      * 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());
--- a/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java	Fri Aug 17 17:16:25 2012 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java	Sun Aug 19 16:49:54 2012 +0200
@@ -59,7 +59,7 @@
  * 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 {