[icedtea-web] RFC: Support building against OpenJDK8

Omair Majid omajid at redhat.com
Thu Jan 23 14:03:09 PST 2014


Hi,

I tried to build IcedTea-Web against OpenJDK8 for the first time today
and ran into a two issues:

1. OpenJDK8 needs the applet hole patch that various IcedTea versions
have been carrying [1].

2. The OpenJDK8 javadoc tool is strict enough that it gives an error and
refuses to parse malformed and incorrect javadoc. The attached patch
fixes this.

This is far from an exhaustive test on OpenJDK8. I only tested a few
things, but at least with this we can build IcedTea-Web against
OpenJDK8.

Okay to push?

Thanks,
Omair

[1] http://icedtea.classpath.org/hg/release/icedtea6-1.13/file/d6930de9aba6/patches/applet_hole.patch

-- 
PGP Key: 66484681 (http://pgp.mit.edu/)
Fingerprint = F072 555B 0A17 3957 4E95  0056 F286 F14F 6648 4681
-------------- next part --------------
diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2014-01-23  Omair Majid  <omajid at redhat.com>
+
+	* netx/net/sourceforge/jnlp/JNLPFile.java,
+	* netx/net/sourceforge/jnlp/NetxPanel.java,
+	* netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java,
+	* netx/net/sourceforge/jnlp/cache/CacheUtil.java,
+	* netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java,
+	* netx/net/sourceforge/jnlp/config/DirectoryValidator.java,
+	* netx/net/sourceforge/jnlp/config/Setting.java,
+	* netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java,
+	* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java,
+	* netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java,
+	* netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java,
+	* netx/net/sourceforge/jnlp/security/SecurityDialogs.java,
+	* netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java,
+	* netx/net/sourceforge/jnlp/services/XSingleInstanceService.java,
+	* netx/net/sourceforge/jnlp/util/FileUtils.java,
+	* netx/net/sourceforge/jnlp/util/JarFile.java,
+	* netx/net/sourceforge/nanoxml/XMLElement.java,
+	* netx/net/sourceforge/nanoxml/XMLParseException.java,
+	* plugin/icedteanp/java/sun/applet/PluginStreamHandler.java: Fix incorrect
+	parameter names, throws declerations and malformed html in javadocs.
+
 2014-01-20  Jiri Vanek  <jvanek at redhat.com>
 
 	Added Christmas splashscreen extension.
diff --git a/netx/net/sourceforge/jnlp/JNLPFile.java b/netx/net/sourceforge/jnlp/JNLPFile.java
--- a/netx/net/sourceforge/jnlp/JNLPFile.java
+++ b/netx/net/sourceforge/jnlp/JNLPFile.java
@@ -199,7 +199,7 @@
      *
      * @param location the location of the JNLP file
      * @param version the version of the JNLP file
-     * @param strict whether to enforce the spec when
+     * @param settings the {@link ParserSettings} to use when parsing the {@code location}
      * @param policy the update policy
      * @throws IOException if an IO exception occurred
      * @throws ParseException if the JNLP file was invalid
@@ -264,7 +264,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 {
@@ -277,8 +276,7 @@
      *
      * @param input input stream of JNLP file.
      * @param codebase codebase to use if not specified in JNLP file..
-     * @param strict whether to enforce the spec rules
-     * @throws IOException if an IO exception occurred
+     * @param settings the {@link ParserSettings} to use when parsing
      * @throws ParseException if the JNLP file was invalid
      */
     public JNLPFile(InputStream input, URL codebase, ParserSettings settings) throws ParseException {
@@ -665,9 +663,7 @@
      *
      * @param requested the local
      * @param available the available locales
-     * @param precision the depth with which to match locales. 1 checks only
-     * language, 2 checks language and country, 3 checks language, country and
-     * variant for matches. Passing 0 will always return true.
+     * @param matchLevel the detail with which to match locales.
      * @return true if requested matches any of available, or if
      * available is empty or null.
      */
diff --git a/netx/net/sourceforge/jnlp/NetxPanel.java b/netx/net/sourceforge/jnlp/NetxPanel.java
--- a/netx/net/sourceforge/jnlp/NetxPanel.java
+++ b/netx/net/sourceforge/jnlp/NetxPanel.java
@@ -42,7 +42,7 @@
  * This panel calls into netx to run an applet, and pipes the display
  * into a panel from the icedtea-web browser plugin.
  *
- * @author      Francis Kung <fkung at redhat.com>
+ * @author      Francis Kung &lt;fkung at redhat.com&gt;
  */
 public class NetxPanel extends AppletViewerPanel implements SplashController {
     private final PluginParameters parameters;
diff --git a/netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java b/netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java
--- a/netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java
+++ b/netx/net/sourceforge/jnlp/cache/CacheLRUWrapper.java
@@ -98,9 +98,6 @@
     
     /**
      * Returns an instance of the policy.
-     * 
-     * @param propertiesFile
-     * @return
      */
     public static CacheLRUWrapper getInstance() {
         return INSTANCE;
diff --git a/netx/net/sourceforge/jnlp/cache/CacheUtil.java b/netx/net/sourceforge/jnlp/cache/CacheUtil.java
--- a/netx/net/sourceforge/jnlp/cache/CacheUtil.java
+++ b/netx/net/sourceforge/jnlp/cache/CacheUtil.java
@@ -368,7 +368,7 @@
 
     /**
      * Returns the parent directory of the cached resource.
-     * @param path The path of the cached resource directory.
+     * @param filePath The path of the cached resource directory.
      */
     public static String getCacheParentDirectory(String filePath) {
         String path = filePath;
diff --git a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
--- a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
+++ b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
@@ -247,7 +247,7 @@
      * Initialize this deployment configuration by reading configuration files.
      * Generally, it will try to continue and ignore errors it finds (such as file not found).
      *
-     * @throws DeploymentException if it encounters a fatal error.
+     * @throws ConfigurationException if it encounters a fatal error.
      */
     public void load() throws ConfigurationException {
         load(true);
@@ -269,7 +269,7 @@
      *
      * @param fixIssues If true, fix issues that are discovered when reading configuration by
      * resorting to the default values
-     * @throws DeploymentException if it encounters a fatal error.
+     * @throws ConfigurationException if it encounters a fatal error.
      */
     public void load(boolean fixIssues) throws ConfigurationException {
         // make sure no state leaks if security check fails later on
diff --git a/netx/net/sourceforge/jnlp/config/DirectoryValidator.java b/netx/net/sourceforge/jnlp/config/DirectoryValidator.java
--- a/netx/net/sourceforge/jnlp/config/DirectoryValidator.java
+++ b/netx/net/sourceforge/jnlp/config/DirectoryValidator.java
@@ -216,12 +216,14 @@
     /**
      *  Creates DirectoryValidator to ensure directories read from
      *  user (if any - default otherwise ) settings via keys:
+     * <ul>
      * <li>KEY_USER_CACHE_DIR</li> 
      * <li>KEY_USER_PERSISTENCE_CACHE_DIR</li>
      * <li>KEY_SYSTEM_CACHE_DIR</li> 
      * <li>KEY_USER_LOG_DIR</li>
      * <li>KEY_USER_TMP_DIR</li> 
      * <li>KEY_USER_LOCKS_DIR</li>
+     * </ul>
      */
     public DirectoryValidator() {
         dirsToCheck = new ArrayList<File>(6);
diff --git a/netx/net/sourceforge/jnlp/config/Setting.java b/netx/net/sourceforge/jnlp/config/Setting.java
--- a/netx/net/sourceforge/jnlp/config/Setting.java
+++ b/netx/net/sourceforge/jnlp/config/Setting.java
@@ -67,7 +67,7 @@
      * @param defaultValue the default value of this setting. If this is not a
      * recognized setting, use null.
      * @param value the initial value of this setting
-     * @param source the origin of the value (a file, or perhaps "<internal>")
+     * @param source the origin of the value (a file, or perhaps "{@code <internal>}")
      */
     public Setting(String name, String description, boolean locked,
             ValueValidator validator, T defaultValue, T value, String source) {
diff --git a/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java b/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
--- a/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
+++ b/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
@@ -37,7 +37,7 @@
 /**
  * This dialog provides a means for user to edit more of the proxy settings.
  * 
- * @author Andrew Su <asu at redhat.com, andrew.su at utoronto.ca>
+ * @author Andrew Su &lt;asu at redhat.com, andrew.su at utoronto.ca&gt;
  * 
  */
 public class AdvancedProxySettingsDialog extends JDialog {
diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
@@ -796,7 +796,6 @@
      * 
      * @param jars Jars that are checked to see if they contain the main class
      * @param  name attribute to be found
-     * @throws LaunchException Thrown if the signed JNLP file, within the main jar, fails to be verified or does not match
      */
     public String checkForAttributeInJars(List<JARDesc> jars, Attributes.Name name) {
        
diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java
@@ -684,7 +684,8 @@
     }
 
     /**
-     * Indicate that netx is running by creating the {@link JNLPRuntime#INSTANCE_FILE} and
+     * Indicate that netx is running by creating the file corresponding to 
+     * {@link DeploymentConfiguration#KEY_USER_NETX_RUNNING_FILE} and
      * acquiring a shared lock on it
      */
     public synchronized static void markNetxRunning() {
@@ -734,8 +735,8 @@
     }
 
     /**
-     * Indicate that netx is stopped by releasing the shared lock on
-     * {@link JNLPRuntime#INSTANCE_FILE}.
+     * Indicate that netx is stopped by releasing the shared lock on the file
+     * corresponding to {@link DeploymentConfiguration#KEY_USER_NETX_RUNNING_FILE}.
      */
     private static void markNetxStopped() {
         if (fileLock == null) {
diff --git a/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java b/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java
--- a/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java
+++ b/netx/net/sourceforge/jnlp/runtime/RhinoBasedPacEvaluator.java
@@ -61,7 +61,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 <a href="http://en.wikipedia.org/wiki/Proxy_auto-config#The_PAC_file">The PAC File</a>
  */
 public class RhinoBasedPacEvaluator implements PacEvaluator {
 
diff --git a/netx/net/sourceforge/jnlp/security/SecurityDialogs.java b/netx/net/sourceforge/jnlp/security/SecurityDialogs.java
--- a/netx/net/sourceforge/jnlp/security/SecurityDialogs.java
+++ b/netx/net/sourceforge/jnlp/security/SecurityDialogs.java
@@ -240,7 +240,7 @@
 
     /**
      * FIXME This is unused. Remove it?
-     * @return (0, 1, 2) => (Yes, No, Cancel)
+     * @return (0, 1, 2) =&gt; (Yes, No, Cancel)
      */
     public static int showAppletWarning() {
 
diff --git a/netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java b/netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java
--- a/netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java
+++ b/netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java
@@ -200,7 +200,7 @@
      * @param authType The auth type algorithm
      * @param hostName The expected hostName that the server should have
      * @param socket The SSLSocket in use (may be null)
-     * @param ending The SSLEngine in use (may be null)
+     * @param engine The SSLEngine in use (may be null)
      */
     public synchronized void checkTrustServer(X509Certificate[] chain,
                              String authType, String hostName,
diff --git a/netx/net/sourceforge/jnlp/services/XSingleInstanceService.java b/netx/net/sourceforge/jnlp/services/XSingleInstanceService.java
--- a/netx/net/sourceforge/jnlp/services/XSingleInstanceService.java
+++ b/netx/net/sourceforge/jnlp/services/XSingleInstanceService.java
@@ -103,7 +103,7 @@
     /**
      * Initialize the new SingleInstanceService
      *
-     * @throws InstanceAlreadyExistsException if the instance already exists
+     * @throws InstanceExistsException if the instance already exists
      */
     public void initializeSingleInstance() {
         // this is called after the application has started. so safe to use
@@ -222,7 +222,7 @@
     /**
      * Add the specified SingleInstanceListener
      *
-     * @throws InstanceExistsException, which is likely to terminate the
+     * @throws InstanceExistsException which is likely to terminate the
      *         application but not guaranteed to
      */
     public void addSingleInstanceListener(SingleInstanceListener sil) {
diff --git a/netx/net/sourceforge/jnlp/util/FileUtils.java b/netx/net/sourceforge/jnlp/util/FileUtils.java
--- a/netx/net/sourceforge/jnlp/util/FileUtils.java
+++ b/netx/net/sourceforge/jnlp/util/FileUtils.java
@@ -398,7 +398,8 @@
     /**
      * utility method which can read from any stream as one long String
      * 
-     * @param input stream
+     * @param is stream
+     * @param encoding the encoding to use to convert the bytes from the stream
      * @return stream as string
      * @throws IOException if connection can't be established or resource does not exist
      */
@@ -424,7 +425,7 @@
     /**
      * utility method which can read from any stream as one long String
      *
-     * @param input stream
+     * @param is stream
      * @return stream as string
      * @throws IOException if connection can't be established or resource does not exist
      */
diff --git a/netx/net/sourceforge/jnlp/util/JarFile.java b/netx/net/sourceforge/jnlp/util/JarFile.java
--- a/netx/net/sourceforge/jnlp/util/JarFile.java
+++ b/netx/net/sourceforge/jnlp/util/JarFile.java
@@ -115,7 +115,8 @@
      * So for our purposes we must insists on first record to be valid.
      *
      * @param file
-     * @throws IOException, InvalidJarHeaderException
+     * @throws IOException
+     * @throws InvalidJarHeaderException
      */
     public static void verifyZipHeader(File file) throws IOException {
         if (!JNLPRuntime.isIgnoreHeaders()) {
diff --git a/netx/net/sourceforge/nanoxml/XMLElement.java b/netx/net/sourceforge/nanoxml/XMLElement.java
--- a/netx/net/sourceforge/nanoxml/XMLElement.java
+++ b/netx/net/sourceforge/nanoxml/XMLElement.java
@@ -43,11 +43,11 @@
  * <DT><B>Parsing XML Data</B></DT>
  * <DD>
  * You can parse XML data using the following code:
- * <UL><CODE>
- * XMLElement xml = new XMLElement();<BR>
- * FileReader reader = new FileReader("filename.xml");<BR>
+ * <UL>{@code
+ * XMLElement xml = new XMLElement();
+ * FileReader reader = new FileReader("filename.xml");
  * xml.parseFromReader(reader);
- * </CODE></UL></DD></DL>
+ * }</UL></DD></DL>
  * <DL><DT><B>Retrieving Attributes</B></DT>
  * <DD>
  * You can enumerate the attributes of an element using the method
@@ -55,15 +55,15 @@
  * The attribute values can be retrieved using the method
  * {@link #getAttribute(java.lang.String) getAttribute}.
  * The following example shows how to list the attributes of an element:
- * <UL><CODE>
- * XMLElement element = ...;<BR>
- * Enumeration enum = element.enumerateAttributeNames();<BR>
- * while (enum.hasMoreElements()) {<BR>
- * &nbsp;&nbsp;&nbsp;&nbsp;String key = (String) enum.nextElement();<BR>
- * &nbsp;&nbsp;&nbsp;&nbsp;String value = (String) element.getAttribute(key);<BR>
- * &nbsp;&nbsp;&nbsp;&nbsp;System.out.println(key + " = " + value);<BR>
+ * <UL>{@code
+ * XMLElement element = ...;
+ * Enumeration enum = element.enumerateAttributeNames();
+ * while (enum.hasMoreElements()) {
+ * &nbsp;&nbsp;&nbsp;&nbsp;String key = (String) enum.nextElement();
+ * &nbsp;&nbsp;&nbsp;&nbsp;String value = (String) element.getAttribute(key);
+ * &nbsp;&nbsp;&nbsp;&nbsp;System.out.println(key + " = " + value);
  * }
- * </CODE></UL></DD></DL>
+ * }</UL></DD></DL>
  * <DL><DT><B>Retrieving Child Elements</B></DT>
  * <DD>
  * You can enumerate the children of an element using
@@ -74,9 +74,7 @@
  * <DL><DT><B>Elements Containing Character Data</B></DT>
  * <DD>
  * If an elements contains character data, like in the following example:
- * <UL><CODE>
- * &lt;title&gt;The Title&lt;/title&gt;
- * </CODE></UL>
+ * <UL>{@code <title>The Title</title>}</UL>
  * you can retrieve that data using the method
  * {@link #getContent() getContent}.
  * </DD></DL>
@@ -163,7 +161,7 @@
      * The line number where the element starts.
      *
      * <dl><dt><b>Invariants:</b></dt><dd>
-     * <ul><li><code>lineNr &gt= 0</code>
+     * <ul><li>{@code lineNr >= 0}
      * </ul></dd></dl>
      */
     private int lineNr;
@@ -215,17 +213,17 @@
     /**
      * Creates and initializes a new XML element.
      * Calling the construction is equivalent to:
-     * <ul><code>new XMLElement(new Hashtable(), false, true)
-     * </code></ul>
+     * <ul><li><code>new XMLElement(new Hashtable(), false, true)
+     * </code></li></ul>
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
-     * <ul><li>countChildren() => 0
-     *     <li>enumerateChildren() => empty enumeration
-     *     <li>enumeratePropertyNames() => empty enumeration
-     *     <li>getChildren() => empty vector
-     *     <li>getContent() => ""
-     *     <li>getLineNr() => 0
-     *     <li>getName() => null
+     * <ul><li>countChildren() =&gt; 0
+     *     <li>enumerateChildren() =&gt; empty enumeration
+     *     <li>enumeratePropertyNames() =&gt; empty enumeration
+     *     <li>getChildren() =&gt; empty vector
+     *     <li>getContent() =&gt; ""
+     *     <li>getLineNr() =&gt; 0
+     *     <li>getName() =&gt; null
      * </ul></dd></dl>
      *
      */
@@ -252,7 +250,7 @@
      *     <code>true</code> if the case of element and attribute names have
      *     to be ignored.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>entities != null</code>
      *     <li>if <code>fillBasicConversionTable == false</code>
      *         then <code>entities</code> contains at least the following
@@ -261,14 +259,14 @@
      * </ul></dd></dl>
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
-     * <ul><li>countChildren() => 0
-     *     <li>enumerateChildren() => empty enumeration
-     *     <li>enumeratePropertyNames() => empty enumeration
-     *     <li>getChildren() => empty vector
-     *     <li>getContent() => ""
-     *     <li>getLineNr() => 0
-     *     <li>getName() => null
-     * </ul></dd></dl><dl>
+     * <ul><li>countChildren() =&gt; 0
+     *     <li>enumerateChildren() =&gt; empty enumeration
+     *     <li>enumeratePropertyNames() =&gt; empty enumeration
+     *     <li>getChildren() =&gt; empty vector
+     *     <li>getContent() =&gt; ""
+     *     <li>getLineNr() =&gt; 0
+     *     <li>getName() =&gt; null
+     * </ul></dd></dl>
      *
      */
     protected XMLElement(Hashtable<String, char[]> entities,
@@ -306,17 +304,17 @@
      * @param child
      *     The child element to add.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>child != null</code>
      *     <li><code>child.getName() != null</code>
      *     <li><code>child</code> does not have a parent element
      * </ul></dd></dl>
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
-     * <ul><li>countChildren() => old.countChildren() + 1
-     *     <li>enumerateChildren() => old.enumerateChildren() + child
-     *     <li>getChildren() => old.enumerateChildren() + child
-     * </ul></dd></dl><dl>
+     * <ul><li>countChildren() =&gt; old.countChildren() + 1
+     *     <li>enumerateChildren() =&gt; old.enumerateChildren() + child
+     *     <li>getChildren() =&gt; old.enumerateChildren() + child
+     * </ul></dd></dl>
      *
      */
     public void addChild(XMLElement child) {
@@ -331,7 +329,7 @@
      * @param value
      *     The value of the attribute.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>name != null</code>
      *     <li><code>name</code> is a valid XML identifier
      *     <li><code>value != null</code>
@@ -339,9 +337,9 @@
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
      * <ul><li>enumerateAttributeNames()
-     *         => old.enumerateAttributeNames() + name
-     *     <li>getAttribute(name) => value
-     * </ul></dd></dl><dl>
+     *         =&gt; old.enumerateAttributeNames() + name
+     *     <li>getAttribute(name) =&gt; value
+     * </ul></dd></dl>
      *
      */
     public void setAttribute(String name,
@@ -356,7 +354,7 @@
      * Returns the number of child elements of the element.
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
-     * <ul><li><code>result >= 0</code>
+     * <ul><li>{@code result >= 0}
      * </ul></dd></dl>
      *
      */
@@ -402,7 +400,7 @@
      * This method returns <code>0</code> there is no associated source data.
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
-     * <ul><li><code>result >= 0</code>
+     * <ul><li>{@code result >= 0}
      * </ul></dd></dl>
      */
     public int getLineNr() {
@@ -415,10 +413,10 @@
      *
      * @param name The name of the attribute.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>name != null</code>
      *     <li><code>name</code> is a valid XML identifier
-     * </ul></dd></dl><dl>
+     * </ul></dd></dl>
      *
      */
     public Object getAttribute(String name) {
@@ -443,7 +441,7 @@
      * @param reader
      *     The reader from which to retrieve the XML data.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>reader != null</code>
      *     <li><code>reader</code> is not closed
      * </ul></dd></dl>
@@ -453,7 +451,7 @@
      *         parsed from the reader
      *     <li>the reader points to the first character following the last
      *         '&gt;' character of the XML element
-     * </ul></dd></dl><dl>
+     * </ul></dd></dl>
      *
      * @throws java.io.IOException
      *     If an error occured while reading the input.
@@ -473,7 +471,7 @@
      * @param startingLineNr
      *     The line number of the first line in the data.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>reader != null</code>
      *     <li><code>reader</code> is not closed
      * </ul></dd></dl>
@@ -483,7 +481,7 @@
      *         parsed from the reader
      *     <li>the reader points to the first character following the last
      *         '&gt;' character of the XML element
-     * </ul></dd></dl><dl>
+     * </ul></dd></dl>
      *
      * @throws java.io.IOException
      *     If an error occured while reading the input.
@@ -544,7 +542,7 @@
      * @param name
      *     The new name.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>name != null</code>
      *     <li><code>name</code> is a valid XML identifier
      * </ul></dd></dl>
@@ -561,7 +559,7 @@
      * @param result
      *     The buffer in which the scanned identifier will be put.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>result != null</code>
      *     <li>The next character read from the reader is a valid first
      *         character of an XML identifier.
@@ -570,7 +568,7 @@
      * <dl><dt><b>Postconditions:</b></dt><dd>
      * <ul><li>The next character read from the reader won't be an identifier
      *         character.
-     * </ul></dd></dl><dl>
+     * </ul></dd></dl>
      */
     protected void scanIdentifier(StringBuffer result)
             throws IOException {
@@ -613,7 +611,7 @@
      *
      * @return the next character following the whitespace.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>result != null</code>
      * </ul></dd></dl>
      */
@@ -640,7 +638,7 @@
      * The scanned string without delimiters is appended to
      * <code>string</code>.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>string != null</code>
      *     <li>the next char read is the string delimiter
      * </ul></dd></dl>
@@ -668,7 +666,7 @@
      * The next &lt; char is skipped.
      * The scanned data is appended to <code>data</code>.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>data != null</code>
      * </ul></dd></dl>
      */
@@ -696,7 +694,7 @@
      * Scans a special tag and if the tag is a CDATA section, append its
      * content to <code>buf</code>.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>buf != null</code>
      *     <li>The first &lt; has already been read.
      * </ul></dd></dl>
@@ -751,7 +749,7 @@
     /**
      * Skips a comment.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li>The first &lt;!-- has already been read.
      * </ul></dd></dl>
      */
@@ -791,9 +789,9 @@
      * @param bracketLevel The number of open square brackets ([) that have
      *                     already been read.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li>The first &lt;! has already been read.
-     *     <li><code>bracketLevel >= 0</code>
+     *     <li><code>bracketLevel &gt;= 0</code>
      * </ul></dd></dl>
      */
     protected void skipSpecialTag(int bracketLevel)
@@ -848,7 +846,7 @@
      *
      * @param literal the literal to check.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>literal != null</code>
      * </ul></dd></dl>
      */
@@ -890,7 +888,7 @@
      *
      * @param elt The element that will contain the result.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li>The first &lt; has already been read.
      *     <li><code>elt != null</code>
      * </ul></dd></dl>
@@ -1001,7 +999,7 @@
      *
      * @param buf Where to put the entity value.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li>The first &amp; has already been read.
      *     <li><code>buf != null</code>
      * </ul></dd></dl>
@@ -1043,7 +1041,7 @@
      *
      * @param ch The character to push back.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li>The read-back buffer is empty.
      *     <li><code>ch != '\0'</code>
      * </ul></dd></dl>
@@ -1058,7 +1056,7 @@
      *
      * @param name The name of the entity.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>name != null</code>
      * </ul></dd></dl>
      */
@@ -1074,7 +1072,7 @@
      * @param name  The name of the entity.
      * @param value The value of the entity.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>name != null</code>
      *     <li><code>value != null</code>
      * </ul></dd></dl>
@@ -1100,7 +1098,7 @@
      *
      * @param context The context in which the error occured.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>context != null</code>
      *     <li><code>context.length() &gt; 0</code>
      * </ul></dd></dl>
@@ -1117,7 +1115,7 @@
      * @param charSet The set of characters (in human readable form) that was
      *                expected.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>charSet != null</code>
      *     <li><code>charSet.length() &gt; 0</code>
      * </ul></dd></dl>
@@ -1134,7 +1132,7 @@
      * @param charSet The set of characters (in human readable form) that was
      *                expected.
      * @param ch The character that was received instead.
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>charSet != null</code>
      *     <li><code>charSet.length() &gt; 0</code>
      * </ul></dd></dl>
@@ -1149,7 +1147,7 @@
      *
      * @param name The name of the entity.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>name != null</code>
      *     <li><code>name.length() &gt; 0</code>
      * </ul></dd></dl>
diff --git a/netx/net/sourceforge/nanoxml/XMLParseException.java b/netx/net/sourceforge/nanoxml/XMLParseException.java
--- a/netx/net/sourceforge/nanoxml/XMLParseException.java
+++ b/netx/net/sourceforge/nanoxml/XMLParseException.java
@@ -53,7 +53,7 @@
      * <code>NO_LINE</code> if the line number is unknown.
      *
      * <dl><dt><b>Invariants:</b></dt><dd>
-     * <ul><li><code>lineNr &gt 0 || lineNr == NO_LINE</code>
+     * <ul><li>{@code lineNr > 0 || lineNr == NO_LINE}
      * </ul></dd></dl>
      */
     private int lineNr;
@@ -64,13 +64,13 @@
      * @param name    The name of the element where the error is located.
      * @param message A message describing what went wrong.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
-     * <ul><li><code>message != null</code>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
+     * <ul><li>{@code message != null}
      * </ul></dd></dl>
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
-     * <ul><li>getLineNr() => NO_LINE
-     * </ul></dd></dl><dl>
+     * <ul><li>{@code getLineNr() => NO_LINE}
+     * </ul></dd></dl>
      */
     public XMLParseException(String name,
                              String message) {
@@ -88,14 +88,14 @@
      * @param lineNr  The number of the line in the input.
      * @param message A message describing what went wrong.
      *
-     * </dl><dl><dt><b>Preconditions:</b></dt><dd>
+     * <dl><dt><b>Preconditions:</b></dt><dd>
      * <ul><li><code>message != null</code>
      *     <li><code>lineNr &gt; 0</code>
      * </ul></dd></dl>
      *
      * <dl><dt><b>Postconditions:</b></dt><dd>
-     * <ul><li>getLineNr() => lineNr
-     * </ul></dd></dl><dl>
+     * <ul><li>{@code getLineNr() => lineNr}
+     * </ul></dd></dl>
      */
     public XMLParseException(String name,
                              int lineNr,
diff --git a/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java b/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java
--- a/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java
+++ b/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java
@@ -320,8 +320,6 @@
      * Read string from plugin.
      *
      * @return the read string
-     *
-     * @exception IOException if an error occurs
      */
     private String read() {
         String message = null;
@@ -355,8 +353,6 @@
      * Write string to plugin.
      * 
      * @param message the message to write
-     *
-     * @exception IOException if an error occurs
      */
     public void write(String message) {
 


More information about the distro-pkg-dev mailing list