Return-Path: Delivered-To: apmail-db-torque-dev-archive@db.apache.org Received: (qmail 24257 invoked by uid 500); 25 Aug 2003 21:42:19 -0000 Mailing-List: contact torque-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Apache Torque Developers List" Reply-To: "Apache Torque Developers List" Delivered-To: mailing list torque-dev@db.apache.org Received: (qmail 24243 invoked by uid 500); 25 Aug 2003 21:42:19 -0000 Received: (qmail 24239 invoked from network); 25 Aug 2003 21:42:19 -0000 Received: from minotaur.apache.org (209.237.227.194) by daedalus.apache.org with SMTP; 25 Aug 2003 21:42:19 -0000 Received: (qmail 2176 invoked by uid 1280); 25 Aug 2003 21:42:40 -0000 Date: 25 Aug 2003 21:42:40 -0000 Message-ID: <20030825214240.2175.qmail@minotaur.apache.org> From: mpoeschl@apache.org To: db-torque-cvs@apache.org Subject: cvs commit: db-torque/src/java/org/apache/torque/om NumberKey.java ComboKey.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N mpoeschl 2003/08/25 14:42:40 Modified: src/java/org/apache/torque/om NumberKey.java ComboKey.java Log: javadoc warnings Revision Changes Path 1.19 +7 -7 db-torque/src/java/org/apache/torque/om/NumberKey.java Index: NumberKey.java =================================================================== RCS file: /home/cvs/db-torque/src/java/org/apache/torque/om/NumberKey.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- NumberKey.java 18 May 2003 12:27:24 -0000 1.18 +++ NumberKey.java 25 Aug 2003 21:42:40 -0000 1.19 @@ -285,7 +285,7 @@ /** * Returns the value of this NumberKey as a byte. This value is subject * to the conversion rules set out in - * {@link java.math.BigDecimal.byteValue()} + * {@link java.math.BigDecimal#byteValue()} * * @return the NumberKey converted to a byte */ @@ -297,7 +297,7 @@ /** * Returns the value of this NumberKey as an int. This value is subject * to the conversion rules set out in - * {@link java.math.BigDecimal.intValue()}, importantly any fractional part + * {@link java.math.BigDecimal#intValue()}, importantly any fractional part * will be discarded and if the underlying value is too big to fit in an * int, only the low-order 32 bits are returned. Note that this * conversion can lose information about the overall magnitude and @@ -314,7 +314,7 @@ /** * Returns the value of this NumberKey as a short. This value is subject * to the conversion rules set out in - * {@link java.math.BigDecimal.intValue()}, importantly any fractional part + * {@link java.math.BigDecimal#intValue()}, importantly any fractional part * will be discarded and if the underlying value is too big to fit * in a long, only the low-order 64 bits are returned. Note that this * conversion can lose information about the overall magnitude and @@ -331,7 +331,7 @@ /** * Returns the value of this NumberKey as a long. This value is subject * to the conversion rules set out in - * {@link java.math.BigDecimal.intValue()} + * {@link java.math.BigDecimal#intValue()} * * @return the NumberKey converted to a long */ @@ -343,7 +343,7 @@ /** * Returns the value of this NumberKey as a float. This value is subject to * the conversion rules set out in - * {@link java.math.BigDecimal.floatValue()}, most importantly if the + * {@link java.math.BigDecimal#floatValue()}, most importantly if the * underlying value has too great a magnitude to represent as a * float, it will be converted to Float.NEGATIVE_INFINITY * or Float.POSITIVE_INFINITY as appropriate. @@ -358,7 +358,7 @@ /** * Returns the value of this NumberKey as a double. This value is subject * to the conversion rules set out in - * {@link java.math.BigDecimal.doubleValue()}, most importantly if the + * {@link java.math.BigDecimal#doubleValue()}, most importantly if the * underlying value has too great a magnitude to represent as a * double, it will be converted to Double.NEGATIVE_INFINITY * or Double.POSITIVE_INFINITY as appropriate. 1.14 +3 -3 db-torque/src/java/org/apache/torque/om/ComboKey.java Index: ComboKey.java =================================================================== RCS file: /home/cvs/db-torque/src/java/org/apache/torque/om/ComboKey.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ComboKey.java 8 Aug 2003 16:49:45 -0000 1.13 +++ ComboKey.java 25 Aug 2003 21:42:40 -0000 1.14 @@ -103,7 +103,7 @@ * Sets the internal representation to a String array. * * @param keys the key values - * @see toString() + * @see #toString() */ public ComboKey(String keys) { @@ -288,7 +288,7 @@ /** * * @param sb the StringBuffer to append - * @see toString() + * @see #toString() */ public void appendTo(StringBuffer sb) { --------------------------------------------------------------------- To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org For additional commands, e-mail: torque-dev-help@db.apache.org