Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 43973 invoked from network); 15 Jul 2003 03:38:53 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 15 Jul 2003 03:38:53 -0000 Received: (qmail 16905 invoked by uid 97); 15 Jul 2003 03:41:31 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 16898 invoked from network); 15 Jul 2003 03:41:30 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 15 Jul 2003 03:41:30 -0000 Received: (qmail 43709 invoked by uid 500); 15 Jul 2003 03:38:51 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 43691 invoked by uid 500); 15 Jul 2003 03:38:51 -0000 Received: (qmail 43688 invoked from network); 15 Jul 2003 03:38:51 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 15 Jul 2003 03:38:51 -0000 Received: (qmail 11244 invoked by uid 1674); 15 Jul 2003 03:38:50 -0000 Date: 15 Jul 2003 03:38:50 -0000 Message-ID: <20030715033850.11243.qmail@icarus.apache.org> From: mdiggory@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/math/src/java/org/apache/commons/math/stat/univariate/summary Sum.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N mdiggory 2003/07/14 20:38:50 Modified: math/src/java/org/apache/commons/math/stat/univariate/summary Sum.java Log: minor javadoc cleanup Revision Changes Path 1.8 +10 -13 jakarta-commons-sandbox/math/src/java/org/apache/commons/math/stat/univariate/summary/Sum.java Index: Sum.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/stat/univariate/summary/Sum.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- Sum.java 15 Jul 2003 03:37:11 -0000 1.7 +++ Sum.java 15 Jul 2003 03:38:50 -0000 1.8 @@ -53,14 +53,7 @@ */ package org.apache.commons.math.stat.univariate.summary; -import org.apache.commons.collections.primitives.DoubleIterator; -import org - .apache - .commons - .math - .stat - .univariate - .AbstractStorelessUnivariateStatistic; +import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic; /** * @version $Revision$ $Date$ @@ -73,7 +66,8 @@ private double value = Double.NaN; /** - * @see org.apache.commons.math.stat.univariate.StorelessUnivariateStatistic#increment(double) + * @see org.apache.commons.math.stat.univariate. + * StorelessUnivariateStatistic#increment(double) */ public void increment(double d) { if (Double.isNaN(value)) { @@ -84,14 +78,16 @@ } /** - * @see org.apache.commons.math.stat.univariate.StorelessUnivariateStatistic#getValue() + * @see org.apache.commons.math.stat.univariate. + * StorelessUnivariateStatistic#getValue() */ public double getResult() { return value; } /** - * @see org.apache.commons.math.stat.univariate.StorelessUnivariateStatistic#clear() + * @see org.apache.commons.math.stat.univariate. + * StorelessUnivariateStatistic#clear() */ public void clear() { value = Double.NaN; @@ -103,7 +99,8 @@ * @param begin processing at this point in the array * @param length processing at this point in the array * @return the sum of the values or Double.NaN if the array is empty - * @see org.apache.commons.math.stat.univariate.UnivariateStatistic#evaluate(double[], int, int) + * @see org.apache.commons.math.stat.univariate. + * UnivariateStatistic#evaluate(double[], int, int) */ public double evaluate(double[] values, int begin, int length) { double sum = Double.NaN; --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org