More precise Javadoc @see references.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137732 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d7aeb4cdd3
commit
a81eb0a684
|
@ -64,7 +64,7 @@ package org.apache.commons.lang;
|
||||||
* @author Pete Gieser
|
* @author Pete Gieser
|
||||||
* @author Gary Gregory
|
* @author Gary Gregory
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id: BitField.java,v 1.3 2003/09/07 14:32:34 psteitz Exp $
|
* @version $Id: BitField.java,v 1.4 2003/12/29 00:27:08 ggregory Exp $
|
||||||
*/
|
*/
|
||||||
public class BitField {
|
public class BitField {
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ public class BitField {
|
||||||
* value is stored as a BitField (and so shifted left so many
|
* value is stored as a BitField (and so shifted left so many
|
||||||
* bits).</p>
|
* bits).</p>
|
||||||
*
|
*
|
||||||
* @see #setValue
|
* @see #setValue(int,int)
|
||||||
* @param holder the int data containing the bits we're interested
|
* @param holder the int data containing the bits we're interested
|
||||||
* in
|
* in
|
||||||
* @return the selected bits, shifted right appropriately
|
* @return the selected bits, shifted right appropriately
|
||||||
|
@ -119,7 +119,7 @@ public class BitField {
|
||||||
* value is stored as a BitField (and so shifted left so many
|
* value is stored as a BitField (and so shifted left so many
|
||||||
* bits).</p>
|
* bits).</p>
|
||||||
*
|
*
|
||||||
* @see #setShortValue
|
* @see #setShortValue(short,short)
|
||||||
* @param holder the short data containing the bits we're
|
* @param holder the short data containing the bits we're
|
||||||
* interested in
|
* interested in
|
||||||
* @return the selected bits, shifted right appropriately
|
* @return the selected bits, shifted right appropriately
|
||||||
|
@ -186,7 +186,7 @@ public class BitField {
|
||||||
/**
|
/**
|
||||||
* <p>Replaces the bits with new values.</p>
|
* <p>Replaces the bits with new values.</p>
|
||||||
*
|
*
|
||||||
* @see #getValue
|
* @see #getValue(int)
|
||||||
* @param holder the int data containing the bits we're
|
* @param holder the int data containing the bits we're
|
||||||
* interested in
|
* interested in
|
||||||
* @param value the new value for the specified bits
|
* @param value the new value for the specified bits
|
||||||
|
@ -200,7 +200,7 @@ public class BitField {
|
||||||
/**
|
/**
|
||||||
* <p>Replaces the bits with new values.</p>
|
* <p>Replaces the bits with new values.</p>
|
||||||
*
|
*
|
||||||
* @see #getShortValue
|
* @see #getShortValue(short)
|
||||||
* @param holder the short data containing the bits we're
|
* @param holder the short data containing the bits we're
|
||||||
* interested in
|
* interested in
|
||||||
* @param value the new value for the specified bits
|
* @param value the new value for the specified bits
|
||||||
|
|
Loading…
Reference in New Issue