This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git
commit a4aa7dcdc22eda19a08cc3c3e231631d422f1725 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sun Dec 12 18:28:25 2021 +0100 (doc) fix javadoc issues --- pom.xml | 3 + .../maven/plugins/javadoc/JavadocNoForkReport.java | 2 +- .../maven/plugins/javadoc/JavadocReport.java | 2 +- .../apache/maven/plugins/javadoc/JavadocUtil.java | 6 +- .../plugins/javadoc/TestJavadocNoForkReport.java | 2 +- .../org/apache/maven/plugins/javadoc/package.html | 872 --------------------- .../mycompany/app/javadoc/helpfile2/help-doc.html | 44 +- 7 files changed, 31 insertions(+), 900 deletions(-) diff --git a/pom.xml b/pom.xml index 11c498f..09e9419 100644 --- a/pom.xml +++ b/pom.xml @@ -418,6 +418,9 @@ under the License. <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> + <configuration> + <failOnWarnings>false</failOnWarnings> + </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> diff --git a/src/main/java/org/apache/maven/plugins/javadoc/JavadocNoForkReport.java b/src/main/java/org/apache/maven/plugins/javadoc/JavadocNoForkReport.java index a2fbbd2..a68f257 100644 --- a/src/main/java/org/apache/maven/plugins/javadoc/JavadocNoForkReport.java +++ b/src/main/java/org/apache/maven/plugins/javadoc/JavadocNoForkReport.java @@ -27,7 +27,7 @@ import org.apache.maven.plugins.annotations.ResolutionScope; /** * Generates documentation for the <code>Java code</code> in an <b>NON aggregator</b> project using the standard * <a href="http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/">Javadoc Tool</a>. Note that this - * goal does require generation of sources before site generation, e.g. by invoking <tt>mvn clean deploy site</tt>. + * goal does require generation of sources before site generation, e.g. by invoking {@code mvn clean deploy site}. * * @author <a href="mailto:[email protected]">Mirko Friedenhagen</a> * @since 2.10 diff --git a/src/main/java/org/apache/maven/plugins/javadoc/JavadocReport.java b/src/main/java/org/apache/maven/plugins/javadoc/JavadocReport.java index 7b10170..545e2ff 100644 --- a/src/main/java/org/apache/maven/plugins/javadoc/JavadocReport.java +++ b/src/main/java/org/apache/maven/plugins/javadoc/JavadocReport.java @@ -163,7 +163,7 @@ public class JavadocReport * * <br> * The logic is the following: - * <table summary="Can-generate-report Matrix"> + * <table><caption>Can-generate-report Matrix</caption> * <tbody> * <tr> * <th> isAggregator </th> diff --git a/src/main/java/org/apache/maven/plugins/javadoc/JavadocUtil.java b/src/main/java/org/apache/maven/plugins/javadoc/JavadocUtil.java index 9404a9b..0e5eda0 100644 --- a/src/main/java/org/apache/maven/plugins/javadoc/JavadocUtil.java +++ b/src/main/java/org/apache/maven/plugins/javadoc/JavadocUtil.java @@ -541,7 +541,7 @@ public class JavadocUtil /** * Parse the output for 'javadoc -J-version' and return the javadoc version recognized. <br> * Here are some output for 'javadoc -J-version' depending the JDK used: - * <table summary="Output for 'javadoc -J-version' per JDK"> + * <table><caption>Output for 'javadoc -J-version' per JDK</caption> * <tr> * <th>JDK</th> * <th>Output for 'javadoc -J-version'</th> @@ -575,7 +575,7 @@ public class JavadocUtil * @param output for 'javadoc -J-version' * @return the version of the javadoc for the output, only digits and dots * @throws PatternSyntaxException if the output doesn't match with the output pattern - * <tt>(?s).*?[^a-zA-Z]([0-9]+\\.?[0-9]*)(\\.([0-9]+))?.*</tt>. + * {@code (?s).*?[^a-zA-Z]([0-9]+\\.?[0-9]*)(\\.([0-9]+))?.*}. * @throws IllegalArgumentException if the output is null */ protected static String extractJavadocVersion( String output ) @@ -616,7 +616,7 @@ public class JavadocUtil /** * Parse a memory string which be used in the JVM arguments <code>-Xms</code> or <code>-Xmx</code>. <br> * Here are some supported memory string depending the JDK used: - * <table summary="Memory argument support per JDK"> + * <table><caption>Memory argument support per JDK</caption> * <tr> * <th>JDK</th> * <th>Memory argument support for <code>-Xms</code> or <code>-Xmx</code></th> diff --git a/src/main/java/org/apache/maven/plugins/javadoc/TestJavadocNoForkReport.java b/src/main/java/org/apache/maven/plugins/javadoc/TestJavadocNoForkReport.java index 8b94f06..2346814 100644 --- a/src/main/java/org/apache/maven/plugins/javadoc/TestJavadocNoForkReport.java +++ b/src/main/java/org/apache/maven/plugins/javadoc/TestJavadocNoForkReport.java @@ -28,7 +28,7 @@ import org.apache.maven.plugins.annotations.ResolutionScope; * Generates documentation for the <code>Java Test code</code> in an <b>NON aggregator</b> project using the standard * <a href="http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/">Javadoc Tool</a>. Note that this * goal does require generation of test sources before site generation, e.g. by invoking - * <tt>mvn clean deploy site</tt>. + * {@code mvn clean deploy site}. * * @author <a href="mailto:[email protected]">Mirko Friedenhagen</a> * @since 2.10 diff --git a/src/main/javadoc/org/apache/maven/plugins/javadoc/package.html b/src/main/javadoc/org/apache/maven/plugins/javadoc/package.html deleted file mode 100644 index eb343f2..0000000 --- a/src/main/javadoc/org/apache/maven/plugins/javadoc/package.html +++ /dev/null @@ -1,872 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> -<HTML> - <HEAD> - <TITLE>API Overview</TITLE> - </HEAD> - <BODY> - <p>The following tables lists all supported Javadoc options and Standard Doclet options since Javadoc 1.4 in the - Maven Javadoc Plugin.</p> - <ol> - <li> - <a href="#Standard_Javadoc_Options">Standard Javadoc Options</a> - </li> - <li> - <a href="#Standard_Doclet_Options">Standard Doclet Options</a> - </li> - <li> - <a href="#Javadoc_References">Javadoc References</a> - </li> - </ol> - - <h3> - <a name="Standard_Javadoc_Options">Standard Javadoc Options</a> - </h3> - - <p>The following table is the complete list of the Standard Javadoc Options and its equivalent - in the Maven Javadoc Plugin.</p> - - <table class="bodyTable"> - <tr class="a"> - <th> - <b>Javadoc Options</b> - </th> - <th> - <b>Since Javadoc</b> - </th> - <th> - <b>Maven Javadoc Plugin Options</b> - </th> - </tr> - <tr class="b"> - <td> - <b>-1.1</b> - </td> - <td> - 1.4 - </td> - <td> - <old/> - </td> - </tr> - <tr class="a"> - <td> - <b>-bootclasspath</b> - <i> classpathlist</i> - </td> - <td> - 1.4 - </td> - <td> - <bootclasspath/>, <bootclasspathArtifacts/> - </td> - </tr> - <tr class="b"> - <td> - <b>-classpath</b> - <i> classpathlist</i> - </td> - <td> - 1.4 - </td> - <td> - Auto-discovered - </td> - </tr> - <tr class="a"> - <td> - <b>-breakiterator</b> - </td> - <td> - 1.5 - </td> - <td> - <breakiterator/> - </td> - </tr> - <tr class="b"> - <td> - <b>-doclet</b> - <i> class</i> - </td> - <td> - 1.4 - </td> - <td> - <doclet/>, <docletArtifact/>, - <docletArtifacts/> - </td> - </tr> - <tr class="a"> - <td> - <b>-docletpath</b> - <i> classpathlist</i> - </td> - <td> - 1.4 - </td> - <td> - <docletPath/> - </td> - </tr> - <tr class="b"> - <td> - <b>-encoding</b> - <i> name</i> - </td> - <td> - 1.4 - </td> - <td> - <encoding/> - </td> - </tr> - <tr class="a"> - <td><b>-exclude</b><i> packagename1</i><b>:</b><i> packagename2</i><b>:</b>... </td> - <td> - 1.5 - </td> - <td> - <excludePackageNames/> - </td> - </tr> - <tr class="b"> - <td> - <b>-extdirs</b> - <i> dirlist</i> - </td> - <td> - 1.4 - </td> - <td> - <extdirs/> - </td> - </tr> - <tr class="a"> - <td> - <b>-help</b> - </td> - <td> - 1.4 - </td> - <td> - - - </td> - </tr> - <tr class="b"> - <td> - <b>-J</b> - <i> flag</i> - </td> - <td> - 1.4 - </td> - <td> - <additionalJOption/>, <maxmemory/>, - <minmemory/> - </td> - </tr> - <tr class="a"> - <td> - <b>-locale</b> - <i> language_country_variant</i> - </td> - <td> - 1.4 - </td> - <td> - <locale/> - </td> - </tr> - <tr class="b"> - <td> - <b>-overview</b> - <i> path\filename</i> - </td> - <td> - 1.4 - </td> - <td> - <overview/> - </td> - </tr> - <tr class="a"> - <td> - <b>-package</b> - </td> - <td> - 1.4 - </td> - <td> - <show/> - </td> - </tr> - <tr class="b"> - <td> - <b>-private</b> - </td> - <td> - 1.4 - </td> - <td> - <show/> - </td> - </tr> - <tr class="a"> - <td> - <b>-protected</b> - </td> - <td> - 1.4 - </td> - <td> - <show/> - </td> - </tr> - <tr class="b"> - <td> - <b>-public</b> - </td> - <td> - 1.4 - </td> - <td> - <show/> - </td> - </tr> - <tr class="a"> - <td> - <b>-quiet</b> - </td> - <td> - 1.5 - </td> - <td> - <quiet/> - </td> - </tr> - <tr class="b"> - <td> - <b>-source</b> - <b>1.4</b> - </td> - <td> - 1.4 - </td> - <td> - <source/> - </td> - </tr> - <tr class="a"> - <td> - <b>-sourcepath</b> - <i> sourcepathlist</i> - </td> - <td> - 1.4 - </td> - <td> - <sourcepath/> - </td> - </tr> - <tr class="b"> - <td><b>-subpackages</b><i> package1</i><b>:</b><i> package2</i><b>:</b>... </td> - <td> - 1.5 - </td> - <td> - <subpackages/> - </td> - </tr> - <tr class="a"> - <td> - <b>-verbose</b> - </td> - <td> - 1.4 - </td> - <td> - <verbose/> - </td> - </tr> - </table> - - <h3> - <a name="Standard_Doclet_Options">Standard Doclet Options</a> - </h3> - - <p>The following table is the complete list of the Standard Doclet Options and its equivalent in - the Maven Javadoc Plugin.</p> - - - <table class="bodyTable"> - <tr class="a"> - <th> - <b>Standard Doclet Options</b> - </th> - <th> - <b>Since Javadoc</b> - </th> - <th> - <b>Maven Javadoc Plugin Options</b> - </th> - </tr> - <tr class="b"> - <td> - <b>-author</b> - </td> - <td> - 1.4 - </td> - <td> - <author/> - </td> - </tr> - <tr class="a"> - <td> - <b>-bottom</b> - <i> text</i> - </td> - <td> - 1.4 - </td> - <td> - <bottom/> - </td> - </tr> - <tr class="b"> - <td> - <b>-breakiterator</b> - </td> - <td> - 1.4 only - </td> - <td> - <breakiterator/> - </td> - </tr> - <tr class="a"> - <td> - <b>-charset</b> - <i> name</i> - </td> - <td> - 1.4 - </td> - <td> - <charset/> - </td> - </tr> - <tr class="b"> - <td> - <b>-d</b> - <i>directory</i> - </td> - <td> - 1.4 - </td> - <td> - <outputDirectory/> - </td> - </tr> - <tr class="a"> - <td> - <b>-docencoding</b> - <i> name</i> - </td> - <td> - 1.4 - </td> - <td> - <docencoding/> - </td> - </tr> - <tr class="b"> - <td> - <b>-docfilessubdirs</b> - </td> - <td> - 1.4 - </td> - <td> - <docfilesubdirs/> - </td> - </tr> - <tr class="a"> - <td> - <b>-doctitle</b> - <i> title</i> - </td> - <td> - 1.4 - </td> - <td> - <doctitle/> - </td> - </tr> - <tr class="b"> - <td> - <b>-exclude</b> - <i> packagename1:packagename2:...</i> - </td> - <td> - 1.4 - </td> - <td> - <excludePackageNames/> - </td> - </tr> - <tr class="a"> - <td> - <b>-excludedocfilessubdir</b> - <i> name1:name2...</i> - </td> - <td> - 1.4 - </td> - <td> - <excludedocfilesubdir/> - </td> - </tr> - <tr class="b"> - <td> - <b>-footer</b> - <i> footer</i> - </td> - <td> - 1.4 - </td> - <td> - <footer/> - </td> - </tr> - <tr class="a"> - <td><b>-group</b><i> groupheading packagepattern:packagepattern:...</i></td> - <td> - 1.4 - </td> - <td> - <groups/> - </td> - </tr> - <tr class="b"> - <td> - <b>-header</b> - <i> header</i> - </td> - <td> - 1.4 - </td> - <td> - <header/> - </td> - </tr> - <tr class="a"> - <td> - <b>-helpfile</b> - <i> path\filename</i> - </td> - <td> - 1.4 - </td> - <td> - <helpfile/> - </td> - </tr> - <tr class="b"> - <td> - <b>-link</b> - <i> extdocURL</i> - </td> - <td> - 1.4 - </td> - <td> - <links/> - </td> - </tr> - <tr class="a"> - <td> - <b>-linkoffline</b> - <i> extdocURL packagelistLoc</i> - </td> - <td> - 1.4 - </td> - <td> - <offlinelinks/> - </td> - </tr> - <tr class="b"> - <td> - <b>-linksource</b> - </td> - <td> - 1.4 - </td> - <td> - <linksource/> - </td> - </tr> - <tr class="a"> - <td> - <b>-keywords</b> - </td> - <td>1.4.2</td> - <td> - <keywords/> - </td> - </tr> - <tr class="b"> - <td> - <b>-nocomment</b> - </td> - <td> - 1.4 - </td> - <td> - <nocomment/> - </td> - </tr> - <tr class="a"> - <td> - <b>-nodeprecated</b> - </td> - <td> - 1.4 - </td> - <td> - <nodeprecated/> - </td> - </tr> - <tr class="b"> - <td> - <b>-nodeprecatedlist</b> - </td> - <td> - 1.4 - </td> - <td> - <nodeprecatedlist/> - </td> - </tr> - <tr class="a"> - <td> - <b>-nohelp</b> - </td> - <td> - 1.4 - </td> - <td> - <nohelp/> - </td> - </tr> - <tr class="b"> - <td> - <b>-noindex</b> - </td> - <td> - 1.4 - </td> - <td> - <noindex/> - </td> - </tr> - <tr class="a"> - <td> - <b>-nonavbar</b> - </td> - <td> - 1.4 - </td> - <td> - <nonavbar/> - </td> - </tr> - <tr class="b"> - <td> - <b>-noqualifier</b> - <i> all | packagename1:packagename2:...</i> - </td> - <td> - 1.4 - </td> - <td> - <noqualifier/> - </td> - </tr> - <tr class="a"> - <td> - <b>-nosince</b> - </td> - <td> - 1.4 - </td> - <td> - <nosince/> - </td> - </tr> - <tr class="b"> - <td> - <b>-notimestamp</b> - </td> - <td>1.5</td> - <td> - <notimestamp/> - </td> - </tr> - <tr class="a"> - <td> - <b>-notree</b> - </td> - <td> - 1.4 - </td> - <td> - <notree/> - </td> - </tr> - <tr class="b"> - <td> - <b>-packagesheader</b> - </td> - <td> - 1.4.2 - </td> - <td> - <packagesheader/> - </td> - </tr> - <tr class="a"> - <td> - <b>-quiet</b> - </td> - <td> - 1.4 only - </td> - <td> - <quiet/> - </td> - </tr> - <tr class="b"> - <td> - <b>-serialwarn</b> - </td> - <td> - 1.4 - </td> - <td> - <serialwarn/> - </td> - </tr> - <tr class="a"> - <td> - <b>-sourcetab</b> (<b>-linksourcetab</b> in 1.4.2) - </td> - <td> - 1.5 - </td> - <td> - <sourcetab/> - </td> - </tr> - <tr class="b"> - <td> - <b>-splitindex</b> - </td> - <td> - 1.4 - </td> - <td> - <splitindex/> - </td> - </tr> - <tr class="a"> - <td> - <b>-stylesheetfile</b> - <i> path\filename</i> - </td> - <td> - 1.4 - </td> - <td> - <stylesheetfile/> - </td> - </tr> - <tr class="b"> - <td> - <b>-subpackages</b> - <i> package1:package1:...</i> - </td> - <td> - 1.4 only - </td> - <td> - <subpackages/> - </td> - </tr> - <tr class="a"> - <td> - <b>-tag</b> - <i> tagname:Xaoptcmf:"taghead"</i> - </td> - <td> - 1.4 - </td> - <td> - <tags/> - </td> - </tr> - <tr class="b"> - <td> - <b>-taglet<i> class</i></b> - </td> - <td> - 1.4 - </td> - <td> - <taglet/>, <tagletArtifact/>, - <tagletArtifacts/>, <taglets/> - </td> - </tr> - <tr class="a"> - <td> - <b>-tagletpath</b> - <i> tagletpathlist</i> - </td> - <td> - 1.4 - </td> - <td> - <tagletpath/>, Auto-discovered - </td> - </tr> - <tr class="b"> - <td> - <b>-title</b> - <i>title</i> - <b>(deprecated)</b> - </td> - <td> - 1.4 - </td> - <td> - - - </td> - </tr> - <tr class="a"> - <td> - <b>-top</b> - </td> - <td> - 6.0 - </td> - <td> - <top/> - </td> - </tr> - <tr class="b"> - <td> - <b>-use</b> - </td> - <td> - 1.4 - </td> - <td> - <use/> - </td> - </tr> - <tr class="a"> - <td> - <b>-version</b> - </td> - <td> - 1.4 - </td> - <td> - <version/> - </td> - </tr> - <tr class="b"> - <td> - <b>-windowtitle</b> - <i> title</i> - </td> - <td> - 1.4 - </td> - <td> - <windowtitle/> - </td> - </tr> - </table> - - <h3> - <a name="Javadoc_References">Javadoc References</a> - </h3> - - <dl> - <dt>The Java API Documentation Generator - 1.4</dt> - <dd> - <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html"> - http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html</a> - </dd> - - <dt>The Java API Documentation Generator - 1.5</dt> - <dd> - <a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html"> - http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html</a> - </dd> - - <dt>The Java API Documentation Generator - 6.0</dt> - <dd> - <a href="http://java.sun.com/javase/6/docs/technotes/tools/windows/javadoc.html"> - http://java.sun.com/javase/6/docs/technotes/tools/windows/javadoc.html</a> - </dd> - </dl> - - <p><b>Note</b>: these references are <b>NOT</b> up-to-date! Some options are also specified in the - "API Enhancements" section on the Javadoc Technology home page.</p> - - <style type="text/css"> - <!-- - table.bodyTable th { - color: white; - background-color: #bbb; - text-align: left; - font-weight: bold; - } - - table.bodyTable th, table.bodyTable td { - } - - table.bodyTable tr.a { - background-color: #ddd; - } - - table.bodyTable tr.b { - background-color: #eee; - } - table { - } - --> - </style> - </BODY> -</HTML> diff --git a/src/test/resources/unit/helpfile-test/src/main/resources/com/mycompany/app/javadoc/helpfile2/help-doc.html b/src/test/resources/unit/helpfile-test/src/main/resources/com/mycompany/app/javadoc/helpfile2/help-doc.html index a31da6e..13e4801 100644 --- a/src/test/resources/unit/helpfile-test/src/main/resources/com/mycompany/app/javadoc/helpfile2/help-doc.html +++ b/src/test/resources/unit/helpfile-test/src/main/resources/com/mycompany/app/javadoc/helpfile2/help-doc.html @@ -107,8 +107,8 @@ Package</H3> Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL> <LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL> </BLOCKQUOTE> -<H3> -Class/Interface</H3> +<H1> +Class/Interface</H1> <BLOCKQUOTE> <P> @@ -119,52 +119,52 @@ Each class, interface, nested class and nested interface has its own separate pa <P> <LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL> Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE> -<H3> -Annotation Type</H3> +<H1> +Annotation Type</H1> <BLOCKQUOTE> <P> Each annotation type has its own separate page with the following sections:<UL> <LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL> </BLOCKQUOTE> -<H3> -Enum</H3> +<H1> +Enum</H1> <BLOCKQUOTE> <P> Each enum has its own separate page with the following sections:<UL> <LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL> </BLOCKQUOTE> -<H3> -Use</H3> +<H1> +Use</H1> <BLOCKQUOTE> Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</ [...] -<H3> -Tree (Class Hierarchy)</H3> +<H1> +Tree (Class Hierarchy)</H1> <BLOCKQUOTE> There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL> <LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL> </BLOCKQUOTE> -<H3> -Deprecated API</H3> +<H1> +Deprecated API</H1> <BLOCKQUOTE> The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE> -<H3> -Index</H3> +<H1> +Index</H1> <BLOCKQUOTE> The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE> -<H3> -Prev/Next</H3> -These links take you to the next or previous class, interface, package, or related page.<H3> -Frames/No Frames</H3> +<H1> +Prev/Next</H1> +These links take you to the next or previous class, interface, package, or related page.<H1> +Frames/No Frames</H1> These links show and hide the HTML frames. All pages are available with or without frames. <P> -<H3> -Serialized Form</H3> +<H1> +Serialized Form</H1> Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. <P> -<H3> -Constant Field Values</H3> +<H1> +Constant Field Values</H1> The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values. <P> <FONT SIZE="-1">
