changeset 1038:6660f78e2691

Fixed doclint errors
author Jiri Vanek <jvanek@redhat.com>
date Fri, 17 Apr 2015 10:48:22 +0200
parents eaafcffd67a2
children 548f9dccc47a
files ChangeLog netx/net/sourceforge/jnlp/JNLPFile.java netx/net/sourceforge/jnlp/util/FileUtils.java netx/net/sourceforge/nanoxml/XMLElement.java netx/net/sourceforge/nanoxml/XMLParseException.java
diffstat 5 files changed, 20 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Mar 03 09:41:23 2015 -0500
+++ b/ChangeLog	Fri Apr 17 10:48:22 2015 +0200
@@ -1,3 +1,11 @@
+2015-04-17  Jiri Vanek  <jvanek@redhat.com>
+
+	fixed doclint errors
+	* netx/net/sourceforge/jnlp/JNLPFile.java:
+	* netx/net/sourceforge/jnlp/util/FileUtils.java:
+	* netx/net/sourceforge/nanoxml/XMLElement.java:
+	* netx/net/sourceforge/nanoxml/XMLParseException.java:
+
 2015-03-03  Jie Kang  <jkang@redhat.com>
 
 	Fix DeadLockTest reproducers
--- a/netx/net/sourceforge/jnlp/JNLPFile.java	Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/jnlp/JNLPFile.java	Fri Apr 17 10:48:22 2015 +0200
@@ -269,7 +269,6 @@
     /**
      * Create a JNLPFile from an input stream.
      *
-     * @throws IOException if an IO exception occurred
      * @throws ParseException if the JNLP file was invalid
      */
     public JNLPFile(InputStream input, ParserSettings settings) throws ParseException {
@@ -283,7 +282,6 @@
      * @param input input stream of JNLP file.
      * @param codebase codebase to use if not specified in JNLP file..
      * @param settings the {@link ParserSettings} to use when parsing
-     * @throws IOException if an IO exception occurred
      * @throws ParseException if the JNLP file was invalid
      */
     public JNLPFile(InputStream input, URL codebase, ParserSettings settings) throws ParseException {
--- a/netx/net/sourceforge/jnlp/util/FileUtils.java	Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/jnlp/util/FileUtils.java	Fri Apr 17 10:48:22 2015 +0200
@@ -394,7 +394,6 @@
     /**
      * Show a dialog informing the user that the file could not be opened
      * @param frame a {@link JFrame} to act as parent to this dialog
-     * @param filePath a {@link String} representing the path to the file we failed to open
      * @param message a {@link String} giving the specific reason the file could not be opened
      */
     public static void showCouldNotOpenDialog(final Component frame, final String message) {
--- a/netx/net/sourceforge/nanoxml/XMLElement.java	Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/nanoxml/XMLElement.java	Fri Apr 17 10:48:22 2015 +0200
@@ -83,7 +83,7 @@
  * {@link #createAnotherElement() createAnotherElement}
  * which has to return a new copy of the receiver.
  * </dd></dl>
- * </p>
+ *
  *
  * @see net.sourceforge.nanoxml.XMLParseException
  *
@@ -178,7 +178,7 @@
     private boolean ignoreWhitespace;
 
     /**
-     * Character read too much.<br/>
+     * Character read too much.<br>
      * This character provides push-back functionality to the input reader
      * without having to use a PushbackReader.
      * If there is no such character, this field is {@code '\0'}.
@@ -210,7 +210,7 @@
     private int parserLineNr;
 
     /**
-     * Creates and initializes a new XML element.<br/>
+     * Creates and initializes a new XML element.<br>
      * Calling the construction is equivalent to:
      * <ul><li>{@code new XMLElement(new Hashtable(), false, true)}</li></ul>
      *
@@ -400,7 +400,7 @@
     }
 
     /**
-     * Returns an attribute of the element.<br/>
+     * Returns an attribute of the element.<br>
      * If the attribute doesn't exist, {@code null} is returned.
      *
      * @param name The name of the attribute.
@@ -535,7 +535,7 @@
      *     The new name.
      *
      * <dl><dt><b>Preconditions:</b></dt><dd>
-     * <ul><li{@code name != null}</li>
+     * <ul><li>{@code name != null}</li>
      *     <li>{@code name} is a valid XML identifier</li>
      * </ul></dd></dl>
      */
@@ -597,7 +597,7 @@
     }
 
     /**
-     * This method scans an identifier from the current reader.<br/>
+     * This method scans an identifier from the current reader.<br>
      * The scanned whitespace is appended to {@code result}.
      *
      * @return the next character following the whitespace.
@@ -625,7 +625,7 @@
     }
 
     /**
-     * This method scans a delimited string from the current reader.<br/>
+     * This method scans a delimited string from the current reader.<br>
      * The scanned string without delimiters is appended to {@code string}.
      *
      * <dl><dt><b>Preconditions:</b></dt><dd>
@@ -653,8 +653,8 @@
 
     /**
      * Scans a {@code #PCDATA} element. CDATA sections and entities are
-     * resolved.<br/>
-     * The next &lt; char is skipped.<br/>
+     * resolved.<br>
+     * The next &lt; char is skipped.<br>
      * The scanned data is appended to {@code data}.
      *
      * <dl><dt><b>Preconditions:</b></dt><dd>
@@ -831,7 +831,7 @@
     }
 
     /**
-     * Scans the data for literal text.<br/>
+     * Scans the data for literal text.<br>
      * Scanning stops when a character does not match or after the complete
      * text has been checked, whichever comes first.
      *
@@ -985,7 +985,7 @@
     }
 
     /**
-     * Resolves an entity. The name of the entity is read from the reader.<br/>
+     * Resolves an entity. The name of the entity is read from the reader.<br>
      * The value of the entity is appended to {@code buf}.
      *
      * @param buf Where to put the entity value.
--- a/netx/net/sourceforge/nanoxml/XMLParseException.java	Tue Mar 03 09:41:23 2015 -0500
+++ b/netx/net/sourceforge/nanoxml/XMLParseException.java	Fri Apr 17 10:48:22 2015 +0200
@@ -32,7 +32,7 @@
  * An XMLParseException is thrown when an error occures while parsing an XML
  * string.
  * <p>
- * $Revision: 1.1 $<br/>
+ * $Revision: 1.1 $<br>
  * $Date: 2002/08/03 04:05:32 $</p>
  *
  * @see net.sourceforge.nanoxml.XMLElement