You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2004/09/30 19:24:47 UTC

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang package.html

ggregory    2004/09/30 10:24:47

  Modified:    lang/src/java/org/apache/commons/lang/math package.html
               lang/src/java/org/apache/commons/lang/enums Enum.java
               lang/src/java/org/apache/commons/lang/enum ValuedEnum.java
                        EnumUtils.java Enum.java package.html
               lang/src/java/org/apache/commons/lang/builder package.html
               lang/src/java/org/apache/commons/lang package.html
  Log:
  Javadoc: Replace some HTML anchor hrefs with Javadoc @link and other nits.
  
  Revision  Changes    Path
  1.5       +2 -2      jakarta-commons/lang/src/java/org/apache/commons/lang/math/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/math/package.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- package.html	18 Feb 2004 22:56:13 -0000	1.4
  +++ package.html	30 Sep 2004 17:24:47 -0000	1.5
  @@ -15,8 +15,8 @@
   -->
   <html>
   <body>
  -Extends <code>java.math</code> for business mathematical classes. This package is intended for business
  -mathematical classes, not scientific ones.
  +Extends {@link java.math} for business mathematical classes. This package is intended for business
  +mathematical use, not scientific use.
   @since 2.0
   </body>
   </html>
  
  
  
  1.3       +2 -2      jakarta-commons/lang/src/java/org/apache/commons/lang/enums/Enum.java
  
  Index: Enum.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/enums/Enum.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Enum.java	1 Jun 2004 20:54:57 -0000	1.2
  +++ Enum.java	30 Sep 2004 17:24:47 -0000	1.3
  @@ -37,7 +37,7 @@
    * however that a more robust type-safe class-based solution can be designed. This
    * 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>.
    * The equals() method will try == first so in most cases the effect is the same.</p>
    * 
  
  
  
  1.17      +2 -3      jakarta-commons/lang/src/java/org/apache/commons/lang/enum/ValuedEnum.java
  
  Index: ValuedEnum.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/enum/ValuedEnum.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- ValuedEnum.java	23 Feb 2004 04:34:20 -0000	1.16
  +++ ValuedEnum.java	30 Sep 2004 17:24:47 -0000	1.17
  @@ -94,8 +94,7 @@
    *
    * @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 
  - *          <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> 
  - *          is a Java 1.5 keyword. 
  + *          {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword. 
    * @see org.apache.commons.lang.enums.ValuedEnum
    * @author Apache Avalon project
    * @author Stephen Colebourne
  
  
  
  1.13      +2 -3      jakarta-commons/lang/src/java/org/apache/commons/lang/enum/EnumUtils.java
  
  Index: EnumUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/enum/EnumUtils.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- EnumUtils.java	23 Feb 2004 04:34:20 -0000	1.12
  +++ EnumUtils.java	30 Sep 2004 17:24:47 -0000	1.13
  @@ -24,8 +24,7 @@
    *
    * @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 
  - *          <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> 
  - *          is a Java 1.5 keyword. 
  + *          {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword. 
    * @see org.apache.commons.lang.enums.EnumUtils
    * @see Enum
    * @see ValuedEnum
  
  
  
  1.29      +2 -3      jakarta-commons/lang/src/java/org/apache/commons/lang/enum/Enum.java
  
  Index: Enum.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/enum/Enum.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- Enum.java	23 Feb 2004 04:34:20 -0000	1.28
  +++ Enum.java	30 Sep 2004 17:24:47 -0000	1.29
  @@ -226,8 +226,7 @@
    * 
    * @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 
  - *          <a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> 
  - *          is a Java 1.5 keyword. 
  + *          {@link org.apache.commons.lang.enums} since <code>enum</code> is a Java 1.5 keyword. 
    * @see org.apache.commons.lang.enums.Enum
    * @author Apache Avalon project
    * @author Stephen Colebourne
  
  
  
  1.6       +5 -3      jakarta-commons/lang/src/java/org/apache/commons/lang/enum/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/enum/package.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- package.html	23 Feb 2004 04:34:20 -0000	1.5
  +++ package.html	30 Sep 2004 17:24:47 -0000	1.6
  @@ -17,9 +17,11 @@
   <body>
   <p>
   <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 
  -<a href="../enums/package-summary.html">org.apache.commons.lang.enums</a> since <code>enum</code> 
  -is a Java 1.5 keyword.
  +and will be removed in version 3.0. 
  +</p>
  +<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>
   Provides an implementation of the C style <code>enum</code> in the Java world.
  
  
  
  1.6       +4 -0      jakarta-commons/lang/src/java/org/apache/commons/lang/builder/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/builder/package.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- package.html	18 Feb 2004 22:53:24 -0000	1.5
  +++ package.html	30 Sep 2004 17:24:47 -0000	1.6
  @@ -17,6 +17,10 @@
   <body>
   Assists in creating consistent <code>equals(Object)</code>, <code>toString()</code>,
   <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
   </body>
   </html>
  
  
  
  1.6       +1 -1      jakarta-commons/lang/src/java/org/apache/commons/lang/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/package.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- package.html	18 Feb 2004 22:59:50 -0000	1.5
  +++ package.html	30 Sep 2004 17:24:47 -0000	1.6
  @@ -16,7 +16,7 @@
   <html>
   <body>
   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
   </body>
   </html>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org