Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 49601 invoked from network); 22 Feb 2011 09:06:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 22 Feb 2011 09:06:12 -0000 Received: (qmail 24663 invoked by uid 500); 22 Feb 2011 09:06:11 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 24318 invoked by uid 500); 22 Feb 2011 09:06:08 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 23643 invoked by uid 99); 22 Feb 2011 09:06:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 09:06:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Feb 2011 09:06:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6661A2388A38; Tue, 22 Feb 2011 09:05:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1073266 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/AbstractIntegrator.java Date: Tue, 22 Feb 2011 09:05:47 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110222090547.6661A2388A38@eris.apache.org> Author: luc Date: Tue Feb 22 09:05:47 2011 New Revision: 1073266 URL: http://svn.apache.org/viewvc?rev=1073266&view=rev Log: added missing @since Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/AbstractIntegrator.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/AbstractIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/AbstractIntegrator.java?rev=1073266&r1=1073265&r2=1073266&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/AbstractIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/AbstractIntegrator.java Tue Feb 22 09:05:47 2011 @@ -215,6 +215,7 @@ public abstract class AbstractIntegrator * {@code false} before they start integration, so a proper lazy * initialization is done automatically on the first step.

* @param stateInitialized new value for the flag + * @since 2.2 */ protected void setStateInitialized(final boolean stateInitialized) { this.statesInitialized = stateInitialized; @@ -228,6 +229,7 @@ public abstract class AbstractIntegrator * @param tEnd final integration time * @return time at end of step * @exception IntegratorException if the value of one event state cannot be evaluated + * @since 2.2 */ protected double acceptStep(final AbstractStepInterpolator interpolator, final double[] y, final double[] yDot, final double tEnd)