Author: erans
Date: Thu Aug 16 21:22:09 2012
New Revision: 1374065

URL: http://svn.apache.org/viewvc?rev=1374065&view=rev
Log:
Javadoc.

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreHighPrecisionRuleFactory.java
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreRuleFactory.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreHighPrecisionRuleFactory.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreHighPrecisionRuleFactory.java?rev=1374065&r1=1374064&r2=1374065&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreHighPrecisionRuleFactory.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreHighPrecisionRuleFactory.java
 Thu Aug 16 21:22:09 2012
@@ -62,6 +62,8 @@ public class LegendreHighPrecisionRuleFa
 
     /**
      * {@inheritDoc}
+     *
+     * @throws NotStrictlyPositiveException if {@code numberOfPoints < 1}.
      */
     @Override
     protected Pair<BigDecimal[], BigDecimal[]> computeRule(int numberOfPoints) 
{

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreRuleFactory.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreRuleFactory.java?rev=1374065&r1=1374064&r2=1374065&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreRuleFactory.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/LegendreRuleFactory.java
 Thu Aug 16 21:22:09 2012
@@ -34,6 +34,8 @@ import org.apache.commons.math3.exceptio
 public class LegendreRuleFactory extends BaseRuleFactory<Double> {
     /**
      * {@inheritDoc}
+     *
+     * @throws NotStrictlyPositiveException if {@code numberOfPoints < 1}.
      */
     @Override
     protected Pair<Double[], Double[]> computeRule(int numberOfPoints) {


Reply via email to