You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2003/08/16 13:08:49 UTC

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

scolebourne    2003/08/16 04:08:49

  Modified:    lang/src/java/org/apache/commons/lang/util package.html
                        BitField.java
  Log:
  Javadoc changes
  bug 22480, from Pete Gieser
  
  Revision  Changes    Path
  1.2       +1 -0      jakarta-commons/lang/src/java/org/apache/commons/lang/util/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/util/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	23 Jun 2003 22:37:39 -0000	1.1
  +++ package.html	16 Aug 2003 11:08:49 -0000	1.2
  @@ -9,5 +9,6 @@
   <li><code>IdentifierUtils</code> - for creating identifiers
   <li><code>Validate</code> - for validating values and throwing exceptions
   </ul>
  +@since 2.0
   </body>
   </html>
  
  
  
  1.7       +7 -3      jakarta-commons/lang/src/java/org/apache/commons/lang/util/BitField.java
  
  Index: BitField.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/util/BitField.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BitField.java	14 Jul 2003 22:25:06 -0000	1.6
  +++ BitField.java	16 Aug 2003 11:08:49 -0000	1.7
  @@ -56,12 +56,12 @@
   /**
    * <p>Manage operations dealing with bit-mapped fields.</p>
    *
  - * <p>Code originated from the POI project.</p>
  - *
  + * @author Apache Jakarta POI
    * @author Scott Sanders (sanders at apache dot org)
    * @author Marc Johnson (mjohnson at apache dot org)
    * @author Andrew C. Oliver (acoliver at apache dot org)
    * @author Stephen Colebourne
  + * @author Pete Gieser
    * @since 2.0
    * @version $Id$
    */
  @@ -100,6 +100,7 @@
        * value is stored as a BitField (and so shifted left so many
        * bits).</p>
        *
  +     * @see #setValue
        * @param holder the int data containing the bits we're interested
        *  in
        * @return the selected bits, shifted right appropriately
  @@ -117,6 +118,7 @@
        * value is stored as a BitField (and so shifted left so many
        * bits).</p>
        *
  +     * @see #setShortValue
        * @param holder the short data containing the bits we're
        *  interested in
        * @return the selected bits, shifted right appropriately
  @@ -183,6 +185,7 @@
       /**
        * <p>Replace the bits with new values.</p>
        *
  +     * @see #getValue
        * @param holder the int data containint the bits we're
        *  interested in
        * @param value the new value for the specified bits
  @@ -196,6 +199,7 @@
       /**
        * <p>Replace the bits with new values.</p>
        *
  +     * @see #getShortValue
        * @param holder the short data containing the bits we're
        *  interested in
        * @param value the new value for the specified bits