Javadoc: Replace some HTML anchor hrefs with Javadoc @link and other nits.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137949 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2004-09-30 17:24:47 +00:00
parent 440ac74e04
commit ef8f9c9842
8 changed files with 20 additions and 17 deletions

View File

@ -17,6 +17,10 @@
<body> <body>
Assists in creating consistent <code>equals(Object)</code>, <code>toString()</code>, Assists in creating consistent <code>equals(Object)</code>, <code>toString()</code>,
<code>hashCode()</code>, and <code>compareTo(Object)</code> methods. <code>hashCode()</code>, and <code>compareTo(Object)</code> methods.
@see java.lang.Object#equals(Object)
@see java.lang.Object#toString()
@see java.lang.Object#hashCode()
@see java.lang.Comparable#compareTo(Object)
@since 1.0 @since 1.0
</body> </body>
</html> </html>

View File

@ -226,15 +226,14 @@
* *
* @deprecated Replaced by {@link org.apache.commons.lang.enums.Enum org.apache.commons.lang.enums.Enum} * @deprecated Replaced by {@link org.apache.commons.lang.enums.Enum org.apache.commons.lang.enums.Enum}
* and will be removed in version 3.0. All classes in this package are deprecated and repackaged to * and will be removed in version 3.0. All classes in this package are deprecated and repackaged to
* <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> * {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword.
* is a Java 1.5 keyword.
* @see org.apache.commons.lang.enums.Enum * @see org.apache.commons.lang.enums.Enum
* @author Apache Avalon project * @author Apache Avalon project
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Chris Webb * @author Chris Webb
* @author Mike Bowler * @author Mike Bowler
* @since 1.0 * @since 1.0
* @version $Id: Enum.java,v 1.28 2004/02/23 04:34:20 ggregory Exp $ * @version $Id: Enum.java,v 1.29 2004/09/30 17:24:47 ggregory Exp $
*/ */
public abstract class Enum implements Comparable, Serializable { public abstract class Enum implements Comparable, Serializable {

View File

@ -24,15 +24,14 @@
* *
* @deprecated Replaced by {@link org.apache.commons.lang.enums.EnumUtils org.apache.commons.lang.enums.EnumUtils} * @deprecated Replaced by {@link org.apache.commons.lang.enums.EnumUtils org.apache.commons.lang.enums.EnumUtils}
* and will be removed in version 3.0. All classes in this package are deprecated and repackaged to * and will be removed in version 3.0. All classes in this package are deprecated and repackaged to
* <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> * {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword.
* is a Java 1.5 keyword.
* @see org.apache.commons.lang.enums.EnumUtils * @see org.apache.commons.lang.enums.EnumUtils
* @see Enum * @see Enum
* @see ValuedEnum * @see ValuedEnum
* @author Stephen Colebourne * @author Stephen Colebourne
* @author Gary Gregory * @author Gary Gregory
* @since 1.0 * @since 1.0
* @version $Id: EnumUtils.java,v 1.12 2004/02/23 04:34:20 ggregory Exp $ * @version $Id: EnumUtils.java,v 1.13 2004/09/30 17:24:47 ggregory Exp $
*/ */
public class EnumUtils { public class EnumUtils {

View File

@ -94,13 +94,12 @@
* *
* @deprecated Replaced by {@link org.apache.commons.lang.enums.ValuedEnum org.apache.commons.lang.enums.ValuedEnum} * @deprecated Replaced by {@link org.apache.commons.lang.enums.ValuedEnum org.apache.commons.lang.enums.ValuedEnum}
* and will be removed in version 3.0. All classes in this package are deprecated and repackaged to * and will be removed in version 3.0. All classes in this package are deprecated and repackaged to
* <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> * {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword.
* is a Java 1.5 keyword.
* @see org.apache.commons.lang.enums.ValuedEnum * @see org.apache.commons.lang.enums.ValuedEnum
* @author Apache Avalon project * @author Apache Avalon project
* @author Stephen Colebourne * @author Stephen Colebourne
* @since 1.0 * @since 1.0
* @version $Id: ValuedEnum.java,v 1.16 2004/02/23 04:34:20 ggregory Exp $ * @version $Id: ValuedEnum.java,v 1.17 2004/09/30 17:24:47 ggregory Exp $
*/ */
public abstract class ValuedEnum extends Enum { public abstract class ValuedEnum extends Enum {

View File

@ -17,9 +17,11 @@
<body> <body>
<p> <p>
<b>Deprecated</b> and replaced by {@link org.apache.commons.lang.enums.ValuedEnum org.apache.commons.lang.enums.ValuedEnum} <b>Deprecated</b> and replaced by {@link org.apache.commons.lang.enums.ValuedEnum org.apache.commons.lang.enums.ValuedEnum}
and will be removed in version 3.0. All classes in this package are deprecated and repackaged to and will be removed in version 3.0.
<a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> </p>
is a Java 1.5 keyword. <p>
All classes in this package are deprecated and repackaged to {@link org.apache.commons.lang.enums}
since <code>enum</code> is a Java 1.5 keyword.
</p> </p>
<p> <p>
Provides an implementation of the C style <code>enum</code> in the Java world. Provides an implementation of the C style <code>enum</code> in the Java world.

View File

@ -37,7 +37,7 @@
* however that a more robust type-safe class-based solution can be designed. This * however that a more robust type-safe class-based solution can be designed. This
* class follows the basic Java type-safe enumeration pattern.</p> * class follows the basic Java type-safe enumeration pattern.</p>
* *
* <p><em>NOTE:</em>Due to the way in which Java ClassLoaders work, comparing * <p><em>NOTE:</em> Due to the way in which Java ClassLoaders work, comparing
* Enum objects should always be done using <code>equals()</code>, not <code>==</code>. * Enum objects should always be done using <code>equals()</code>, not <code>==</code>.
* The equals() method will try == first so in most cases the effect is the same.</p> * The equals() method will try == first so in most cases the effect is the same.</p>
* *
@ -230,7 +230,7 @@
* @author Mike Bowler * @author Mike Bowler
* @author Matthias Eichel * @author Matthias Eichel
* @since 2.1 (class existed in enum package from v1.0) * @since 2.1 (class existed in enum package from v1.0)
* @version $Id: Enum.java,v 1.2 2004/06/01 20:54:57 scolebourne Exp $ * @version $Id: Enum.java,v 1.3 2004/09/30 17:24:47 ggregory Exp $
*/ */
public abstract class Enum implements Comparable, Serializable { public abstract class Enum implements Comparable, Serializable {

View File

@ -15,8 +15,8 @@
--> -->
<html> <html>
<body> <body>
Extends <code>java.math</code> for business mathematical classes. This package is intended for business Extends {@link java.math} for business mathematical classes. This package is intended for business
mathematical classes, not scientific ones. mathematical use, not scientific use.
@since 2.0 @since 2.0
</body> </body>
</html> </html>

View File

@ -16,7 +16,7 @@
<html> <html>
<body> <body>
Provides highly reusable static utility methods, chiefly concerned Provides highly reusable static utility methods, chiefly concerned
with adding value to <code>java.lang</code> and other standard core classes. with adding value to {@link java.lang} and other standard core classes.
@since 1.0 @since 1.0
</body> </body>
</html> </html>