svn commit: r628348 - /commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/StatisticalMultivariateSummary.java

2008-02-16 Thread luc
Author: luc
Date: Sat Feb 16 08:29:40 2008
New Revision: 628348

URL: http://svn.apache.org/viewvc?rev=628348view=rev
Log:
removed javadoc links to the addValue method which does not belong to the 
interface

Modified:

commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/StatisticalMultivariateSummary.java

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/StatisticalMultivariateSummary.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/StatisticalMultivariateSummary.java?rev=628348r1=628347r2=628348view=diff
==
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/StatisticalMultivariateSummary.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/StatisticalMultivariateSummary.java
 Sat Feb 16 08:29:40 2008
@@ -31,39 +31,39 @@
  */
 public int getDimension();
 /**
- * Returns an array whose ith entry is the mean of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * mean of the isupth/sup entries of the arrays
+ * that correspond to each multivariate sample
  * 
  * @return the array of component means
  */
 public abstract double[] getMean();
 /** 
  * Returns the covariance of the available values.
- * @return The covariance, null if no values have been added 
- * or a zeroed matrix for a single value set.  
+ * @return The covariance, null if no multivariate sample
+ * have been added or a zeroed matrix for a single value set.  
  */
 public abstract RealMatrix getCovariance();
 /**
- * Returns an array whose ith entry is the standard deviation of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * standard deviation of the isupth/sup entries of the arrays
+ * that correspond to each multivariate sample
  * 
  * @return the array of component standard deviations
  */
 public abstract double[] getStandardDeviation();
 /**
- * Returns an array whose ith entry is the maximum of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * maximum of the isupth/sup entries of the arrays
+ * that correspond to each multivariate sample
  * 
  * @return the array of component maxima
  */
 public abstract double[] getMax();
 /**
- * Returns an array whose ith entry is the minimum of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * minimum of the isupth/sup entries of the arrays
+ * that correspond to each multivariate sample
  * 
  * @return the array of component minima
  */
@@ -74,33 +74,33 @@
  */
 public abstract long getN();
 /**
- * Returns an array whose ith entry is the geometric mean of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * geometric mean of the isupth/sup entries of the arrays
+ * that correspond to each multivariate sample
  * 
  * @return the array of component geometric means
  */
 public double[] getGeometricMean();
 /**
- * Returns an array whose ith entry is the sum of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * sum of the isupth/sup entries of the arrays
+ * that correspond to each multivariate sample
  * 
  * @return the array of component sums
  */
 public abstract double[] getSum();
 /**
- * Returns an array whose ith entry is the sum of squares of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * sum of squares of the isupth/sup entries of the arrays
+ * that correspond to each multivariate sample
  * 
  * @return the array of component sums of squares
  */
 public abstract double[] getSumSq();
 /**
- * Returns an array whose ith entry is the sum of logs of the
- * ith entries of the arrays that have been added using 
- * [EMAIL PROTECTED] #addValue(double[])}
+ * Returns an array whose isupth/sup entry is the
+ * sum of logs of the isupth/sup entries of the arrays
+ * that correspond 

svn commit: r628349 - /commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/MultivariateSummaryStatistics.java

2008-02-16 Thread luc
Author: luc
Date: Sat Feb 16 08:30:35 2008
New Revision: 628349

URL: http://svn.apache.org/viewvc?rev=628349view=rev
Log:
minor javadoc changes (ith - isupth/sup, removed extra curly brace)

Modified:

commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/MultivariateSummaryStatistics.java

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/MultivariateSummaryStatistics.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/MultivariateSummaryStatistics.java?rev=628349r1=628348r2=628349view=diff
==
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/MultivariateSummaryStatistics.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/MultivariateSummaryStatistics.java
 Sat Feb 16 08:30:35 2008
@@ -48,10 +48,10 @@
  * 
  * pTo compute statistics for a stream of n-tuples, construct a
  * MultivariateStatistics instance with dimension n and then use 
- * [EMAIL PROTECTED] #addValue(double[])} to add n-tuples. The 
codegetXxx/code
+ * [EMAIL PROTECTED] #addValue(double[])} to add n-tuples. The 
codegetXxx/code
  * methods where Xxx is a statistic return an array of codedouble/code
- * values, where for codei = 0,...,n-1/code the ith array element is the
- * value of the given statistic for data range consisting of the ith element of
+ * values, where for codei = 0,...,n-1/code the isupth/sup array 
element is the
+ * value of the given statistic for data range consisting of the 
isupth/sup element of
  * each of the input n-tuples.  For example, if codeaddValue/code is called
  * with actual parameters {0, 1, 2}, then {3, 4, 5} and finally {6, 7, 8},
  * codegetSum/code will return a three-element array with values
@@ -187,8 +187,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the sum of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose isupth/sup entry is the sum of the
+ * isupth/sup entries of the arrays that have been added using 
  * [EMAIL PROTECTED] #addValue(double[])}
  * 
  * @return the array of component sums
@@ -198,8 +198,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the sum of squares of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose isupth/sup entry is the sum of squares of the
+ * isupth/sup entries of the arrays that have been added using 
  * [EMAIL PROTECTED] #addValue(double[])}
  * 
  * @return the array of component sums of squares
@@ -209,8 +209,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the sum of logs of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose isupth/sup entry is the sum of logs of the
+ * isupth/sup entries of the arrays that have been added using 
  * [EMAIL PROTECTED] #addValue(double[])}
  * 
  * @return the array of component log sums
@@ -220,8 +220,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the mean of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose isupth/sup entry is the mean of the
+ * isupth/sup entries of the arrays that have been added using 
  * [EMAIL PROTECTED] #addValue(double[])}
  * 
  * @return the array of component means
@@ -231,8 +231,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the standard deviation of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose isupth/sup entry is the standard deviation 
of the
+ * isupth/sup entries of the arrays that have been added using 
  * [EMAIL PROTECTED] #addValue(double[])}
  * 
  * @return the array of component standard deviations
@@ -262,8 +262,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the maximum of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose isupth/sup entry is the maximum of the
+ * isupth/sup entries of the arrays that have been added using 
  * [EMAIL PROTECTED] #addValue(double[])}
  * 
  * @return the array of component maxima
@@ -273,8 +273,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the minimum of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose isupth/sup entry is the minimum of the
+ * isupth/sup entries of the arrays that have been added using 
  * [EMAIL PROTECTED] #addValue(double[])}
  * 
  * @return the array of component minima
@@ -284,8 +284,8 @@
 }
 
 /**
- * Returns an array whose ith entry is the geometric mean of the
- * ith entries of the arrays that have been added using 
+ * Returns an array whose 

svn commit: r628350 - /commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/SynchronizedMultivariateSummaryStatistics.java

2008-02-16 Thread luc
Author: luc
Date: Sat Feb 16 08:31:03 2008
New Revision: 628350

URL: http://svn.apache.org/viewvc?rev=628350view=rev
Log:
fixed wrong javadoc links

Modified:

commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/SynchronizedMultivariateSummaryStatistics.java

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/SynchronizedMultivariateSummaryStatistics.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/SynchronizedMultivariateSummaryStatistics.java?rev=628350r1=628349r2=628350view=diff
==
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/SynchronizedMultivariateSummaryStatistics.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/SynchronizedMultivariateSummaryStatistics.java
 Sat Feb 16 08:31:03 2008
@@ -49,7 +49,7 @@
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#addValue(double[])
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#addValue(double[])
  */
 public synchronized void addValue(double[] value)
   throws DimensionMismatchException {
@@ -57,119 +57,119 @@
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getDimension()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getDimension()
  */
 public synchronized int getDimension() {
 return super.getDimension();
 }
 
 /**
- * @see org.apache.commons.math.stat.descriptive.MultivariateSummary#getN()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getN()
  */
 public synchronized long getN() {
 return super.getN();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getSum()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getSum()
  */
 public synchronized double[] getSum() {
 return super.getSum();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getSummSq()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getSumSq()
  */
 public synchronized double[] getSumSq() {
 return super.getSumSq();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getSumLog()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getSumLog()
  */
 public synchronized double[] getSumLog() {
 return super.getSumLog();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getMean()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getMean()
  */
 public synchronized double[] getMean() {
 return super.getMean();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getStandardDeviation()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getStandardDeviation()
  */
 public synchronized double[] getStandardDeviation() {
 return super.getStandardDeviation();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getCovariance()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getCovariance()
  */
 public synchronized RealMatrix getCovariance() {
 return super.getCovariance();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getMax()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getMax()
  */
 public synchronized double[] getMax() {
 return super.getMax();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getMin()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getMin()
  */
 public synchronized double[] getMin() {
 return super.getMin();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#getGeometricMean()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#getGeometricMean()
  */
 public synchronized double[] getGeometricMean() {
 return super.getGeometricMean();
 }
 
 /**
- * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummary#toString()
+ * @see 
org.apache.commons.math.stat.descriptive.MultivariateSummaryStatistics#toString()
  */
 public synchronized String toString() {
 return super.toString();
 }
 
 /**
- * @see 

svn commit: r628352 - /commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/moment/GeometricMean.java

2008-02-16 Thread luc
Author: luc
Date: Sat Feb 16 08:39:03 2008
New Revision: 628352

URL: http://svn.apache.org/viewvc?rev=628352view=rev
Log:
fixed a javadoc link that used the wrong method name

Modified:

commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/moment/GeometricMean.java

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/moment/GeometricMean.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/moment/GeometricMean.java?rev=628352r1=628351r2=628352view=diff
==
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/moment/GeometricMean.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/descriptive/moment/GeometricMean.java
 Sat Feb 16 08:39:03 2008
@@ -123,7 +123,7 @@
 /**
  * pSets the implementation for the sum of logs./p
  * pThis method must be activated before any data has been added - i.e.,
- * before [EMAIL PROTECTED] #addValue(double) addValue} has been used to 
add data; 
+ * before [EMAIL PROTECTED] #increment(double) increment} has been used to 
add data; 
  * otherwise an IllegalStateException will be thrown./p
  * 
  * @param sumLogImpl the StorelessUnivariateStatistic instance to use




svn commit: r628380 - /commons/proper/fileupload/tags/commons-fileupload-1.2.1/

2008-02-16 Thread jochen
Author: jochen
Date: Sat Feb 16 13:27:34 2008
New Revision: 628380

URL: http://svn.apache.org/viewvc?rev=628380view=rev
Log: (empty)

Added:
commons/proper/fileupload/tags/commons-fileupload-1.2.1/
  - copied from r628379, 
commons/proper/fileupload/tags/commons-fileupload-1.2.1rc4/



svn commit: r628383 - /commons/proper/fileupload/branches/b_1_2_1/pom.xml

2008-02-16 Thread jochen
Author: jochen
Date: Sat Feb 16 13:49:37 2008
New Revision: 628383

URL: http://svn.apache.org/viewvc?rev=628383view=rev
Log:
Building site for 1.2.1.

Modified:
commons/proper/fileupload/branches/b_1_2_1/pom.xml

Modified: commons/proper/fileupload/branches/b_1_2_1/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/fileupload/branches/b_1_2_1/pom.xml?rev=628383r1=628382r2=628383view=diff
==
--- commons/proper/fileupload/branches/b_1_2_1/pom.xml (original)
+++ commons/proper/fileupload/branches/b_1_2_1/pom.xml Sat Feb 16 13:49:37 2008
@@ -22,7 +22,7 @@
   parent
 groupIdorg.apache.commons/groupId
 artifactIdcommons-parent/artifactId
-version7/version
+version8-SNAPSHOT/version
   /parent
   modelVersion4.0.0/modelVersion
   groupIdcommons-fileupload/groupId
@@ -185,9 +185,11 @@
 /configuration
   /plugin
   plugin
+groupIdorg.apache.maven.plugins/groupId
 artifactIdmaven-javadoc-plugin/artifactId
 configuration
-  bottomCopyright amp;copy; {inceptionYear}-{currentYear} 
{organizationName}. All Rights Reserved./bottom
+  encodingiso-8858-1/encoding
+  docencodingiso-8859-1/docencoding
 /configuration
   /plugin
 /plugins
@@ -268,6 +270,14 @@
 configuration
   comparisonVersion1.2/comparisonVersion
   minSeverityinfo/minSeverity
+/configuration
+  /plugin
+  plugin
+groupIdorg.apache.maven.plugins/groupId
+artifactIdmaven-javadoc-plugin/artifactId
+configuration
+  encodingiso-8859-1/encoding
+  docencodingiso-8859-1/docencoding
 /configuration
   /plugin
 /plugins




svn commit: r628386 - in /commons/proper/fileupload/trunk: ./ src/changes/ src/checkstyle/ src/java/org/apache/commons/fileupload/ src/java/org/apache/commons/fileupload/disk/ src/java/org/apache/comm

2008-02-16 Thread jochen
Author: jochen
Date: Sat Feb 16 14:02:06 2008
New Revision: 628386

URL: http://svn.apache.org/viewvc?rev=628386view=rev
Log:
Merging in changes made for the 1.2.1 release.

Modified:
commons/proper/fileupload/trunk/.project
commons/proper/fileupload/trunk/NOTICE.txt
commons/proper/fileupload/trunk/build.xml
commons/proper/fileupload/trunk/pom.xml
commons/proper/fileupload/trunk/project.xml
commons/proper/fileupload/trunk/src/changes/changes.xml
commons/proper/fileupload/trunk/src/checkstyle/fileupload_checks.xml

commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/FileUploadBase.java

commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/MultipartStream.java

commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/ParameterParser.java

commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/disk/DiskFileItem.java

commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/disk/DiskFileItemFactory.java

commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/servlet/FileCleanerCleanup.java

commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/util/FileItemHeadersImpl.java
commons/proper/fileupload/trunk/xdocs/index.xml

Modified: commons/proper/fileupload/trunk/.project
URL: 
http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/.project?rev=628386r1=628385r2=628386view=diff
==
--- commons/proper/fileupload/trunk/.project (original)
+++ commons/proper/fileupload/trunk/.project Sat Feb 16 14:02:06 2008
@@ -1,29 +1,29 @@
-?xml version=1.0 encoding=UTF-8?
-projectDescription
-   namecommons-fileupload-1.2/name
-   commentThe FileUpload component provides a simple yet flexible means 
of adding support for multipart file upload functionality to servlets and web 
applications./comment
-   projects
-   /projects
-   buildSpec
-   buildCommand
-   nameorg.eclipse.jdt.core.javabuilder/name
-   arguments
-   /arguments
-   /buildCommand
-   buildCommand
-   nameorg.maven.ide.eclipse.maven2Builder/name
-   arguments
-   /arguments
-   /buildCommand
-   buildCommand
-   
nameorg.devzuz.q.maven.jdt.core.mavenIncrementalBuilder/name
-   arguments
-   /arguments
-   /buildCommand
-   /buildSpec
-   natures
-   natureorg.devzuz.q.maven.jdt.core.mavenNature/nature
-   natureorg.maven.ide.eclipse.maven2Nature/nature
-   natureorg.eclipse.jdt.core.javanature/nature
-   /natures
-/projectDescription
+?xml version=1.0 encoding=UTF-8?
+projectDescription
+   namecommons-fileupload/name
+   commentThe FileUpload component provides a simple yet flexible means 
of adding support for multipart file upload functionality to servlets and web 
applications./comment
+   projects
+   /projects
+   buildSpec
+   buildCommand
+   nameorg.eclipse.jdt.core.javabuilder/name
+   arguments
+   /arguments
+   /buildCommand
+   buildCommand
+   nameorg.maven.ide.eclipse.maven2Builder/name
+   arguments
+   /arguments
+   /buildCommand
+   buildCommand
+   
nameorg.devzuz.q.maven.jdt.core.mavenIncrementalBuilder/name
+   arguments
+   /arguments
+   /buildCommand
+   /buildSpec
+   natures
+   natureorg.devzuz.q.maven.jdt.core.mavenNature/nature
+   natureorg.maven.ide.eclipse.maven2Nature/nature
+   natureorg.eclipse.jdt.core.javanature/nature
+   /natures
+/projectDescription

Modified: commons/proper/fileupload/trunk/NOTICE.txt
URL: 
http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/NOTICE.txt?rev=628386r1=628385r2=628386view=diff
==
--- commons/proper/fileupload/trunk/NOTICE.txt (original)
+++ commons/proper/fileupload/trunk/NOTICE.txt Sat Feb 16 14:02:06 2008
@@ -1,5 +1,5 @@
 Apache Commons FileUpload
-Copyright 2002-2007 The Apache Software Foundation
+Copyright 2002-2008 The Apache Software Foundation
 
 This product includes software developed by
 The Apache Software Foundation (http://www.apache.org/).

Modified: commons/proper/fileupload/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/build.xml?rev=628386r1=628385r2=628386view=diff
==
--- 

svn commit: r628395 - in /commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2: beanutils/BeanHelper.java interpol/ConfigurationInterpolato

2008-02-16 Thread ebourg
Author: ebourg
Date: Sat Feb 16 16:20:15 2008
New Revision: 628395

URL: http://svn.apache.org/viewvc?rev=628395view=rev
Log:
More generification

Modified:

commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/beanutils/BeanHelper.java

commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/interpol/ConfigurationInterpolator.java

Modified: 
commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/beanutils/BeanHelper.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/beanutils/BeanHelper.java?rev=628395r1=628394r2=628395view=diff
==
--- 
commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/beanutils/BeanHelper.java
 (original)
+++ 
commons/proper/configuration/branches/configuration2_experimental/src/main/java/org/apache/commons/configuration2/beanutils/BeanHelper.java
 Sat Feb 16 16:20:15 2008
@@ -56,7 +56,7 @@
 public class BeanHelper
 {
 /** Stores a map with the registered bean factories. */
-private static Map beanFactories = Collections.synchronizedMap(new 
HashMap());
+private static MapString, BeanFactory beanFactories = 
Collections.synchronizedMap(new HashMapString, BeanFactory());
 
 /**
  * Stores the default bean factory, which will be used if no other factory
@@ -84,8 +84,7 @@
 {
 if (name == null)
 {
-throw new IllegalArgumentException(
-Name for bean factory must not be null!);
+throw new IllegalArgumentException(Name for bean factory must not 
be null!);
 }
 if (factory == null)
 {
@@ -139,8 +138,7 @@
 {
 if (factory == null)
 {
-throw new IllegalArgumentException(
-Default bean factory must not be null!);
+throw new IllegalArgumentException(Default bean factory must not 
be null!);
 }
 defaultBeanFactory = factory;
 }
@@ -155,8 +153,7 @@
  * @param data the bean declaration
  * @throws ConfigurationRuntimeException if a property cannot be set
  */
-public static void initBean(Object bean, BeanDeclaration data)
-throws ConfigurationRuntimeException
+public static void initBean(Object bean, BeanDeclaration data) throws 
ConfigurationRuntimeException
 {
 Map properties = data.getBeanProperties();
 if (properties != null)
@@ -174,8 +171,7 @@
 for (Iterator it = nestedBeans.keySet().iterator(); it.hasNext();)
 {
 String propName = (String) it.next();
-initProperty(bean, propName, createBean(
-(BeanDeclaration) nestedBeans.get(propName), null));
+initProperty(bean, propName, createBean((BeanDeclaration) 
nestedBeans.get(propName), null));
 }
 }
 }
@@ -194,8 +190,7 @@
 {
 if (!PropertyUtils.isWriteable(bean, propName))
 {
-throw new ConfigurationRuntimeException(Property  + propName
-+  cannot be set!);
+throw new ConfigurationRuntimeException(Property  + propName +  
cannot be set!);
 }
 
 try
@@ -235,15 +230,13 @@
 {
 if (data == null)
 {
-throw new IllegalArgumentException(
-Bean declaration must not be null!);
+throw new IllegalArgumentException(Bean declaration must not be 
null!);
 }
 
 BeanFactory factory = fetchBeanFactory(data);
 try
 {
-return factory.createBean(fetchBeanClass(data, defaultClass,
-factory), data, param);
+return factory.createBean(fetchBeanClass(data, defaultClass, 
factory), data, param);
 }
 catch (Exception ex)
 {
@@ -292,8 +285,7 @@
  * @return the class object for the specified name
  * @throws ClassNotFoundException if the class cannot be loaded
  */
-static Class loadClass(String name, Class callingClass)
-throws ClassNotFoundException
+static Class loadClass(String name, Class callingClass) throws 
ClassNotFoundException
 {
 return ClassUtils.getClass(name);
 }
@@ -311,8 +303,7 @@
  * @return the class of the bean to be created
  * @throws ConfigurationRuntimeException if the class cannot be determined
  */
-private static Class fetchBeanClass(BeanDeclaration data,
-Class defaultClass, BeanFactory factory)
+private static Class fetchBeanClass(BeanDeclaration data, Class 
defaultClass, BeanFactory factory)
 throws ConfigurationRuntimeException
 {
  

svn commit: r628399 - /commons/proper/configuration/branches/configuration2_experimental/pom.xml

2008-02-16 Thread ebourg
Author: ebourg
Date: Sat Feb 16 16:53:01 2008
New Revision: 628399

URL: http://svn.apache.org/viewvc?rev=628399view=rev
Log:
Updated the resources included in the jar to add the DTDs and the digester rules

Modified:
commons/proper/configuration/branches/configuration2_experimental/pom.xml

Modified: 
commons/proper/configuration/branches/configuration2_experimental/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/branches/configuration2_experimental/pom.xml?rev=628399r1=628398r2=628399view=diff
==
--- commons/proper/configuration/branches/configuration2_experimental/pom.xml 
(original)
+++ commons/proper/configuration/branches/configuration2_experimental/pom.xml 
Sat Feb 16 16:53:01 2008
@@ -303,13 +303,6 @@
   version1.4/version
   scopetest/scope
 /dependency
-
-dependency
-  groupIdlog4j/groupId
-  artifactIdlog4j/artifactId
-  version1.2.8/version
-  optionaltrue/optional
-/dependency
   /dependencies
 
   build
@@ -317,12 +310,21 @@
   resource
 directory./directory
 targetPathMETA-INF/targetPath
-  includes
-includeNOTICE.txt/include
-includeLICENSE.txt/include
-  /includes
-/resource
-  /resources
+includes
+  includeNOTICE.txt/include
+  includeLICENSE.txt/include
+/includes
+  /resource
+  resource
+directorysrc/test/resources/directory
+includes
+  includedigesterRules.xml/include
+  includeproperties.dtd/include
+  includePropertyList-1.0.dtd/include
+/includes
+  /resource
+/resources
+
   plugins
 plugin
   groupIdorg.apache.maven.plugins/groupId




svn commit: r628429 - in /commons/proper/math/trunk: pom.xml project.xml src/site/xdoc/changes.xml src/site/xdoc/xdoc.xsl

2008-02-16 Thread psteitz
Author: psteitz
Date: Sat Feb 16 21:20:25 2008
New Revision: 628429

URL: http://svn.apache.org/viewvc?rev=628429view=rev
Log:
Prepare for 1.2-RC2.

Modified:
commons/proper/math/trunk/pom.xml
commons/proper/math/trunk/project.xml
commons/proper/math/trunk/src/site/xdoc/changes.xml
commons/proper/math/trunk/src/site/xdoc/xdoc.xsl

Modified: commons/proper/math/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/pom.xml?rev=628429r1=628428r2=628429view=diff
==
--- commons/proper/math/trunk/pom.xml (original)
+++ commons/proper/math/trunk/pom.xml Sat Feb 16 21:20:25 2008
@@ -27,7 +27,7 @@
   modelVersion4.0.0/modelVersion
   groupIdcommons-math/groupId
   artifactIdcommons-math/artifactId
-  version1.2-RC1/version
+  version1.2-RC2/version
   nameCommons Math/name
 
   inceptionYear2003/inceptionYear

Modified: commons/proper/math/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/project.xml?rev=628429r1=628428r2=628429view=diff
==
--- commons/proper/math/trunk/project.xml (original)
+++ commons/proper/math/trunk/project.xml Sat Feb 16 21:20:25 2008
@@ -23,7 +23,7 @@
   nameMath/name
   groupIdcommons-math/groupId
   artifactIdcommons-math/artifactId
-  currentVersion1.2-RC1/currentVersion
+  currentVersion1.2-RC2/currentVersion
   inceptionYear2003/inceptionYear
   shortDescriptionCommons Math/shortDescription
   descriptionThe Math project is a library of lightweight, self-contained 
mathematics and statistics components addressing the most common practical 
problems not immediately available in the Java programming language or 
commons-lang./description
@@ -107,9 +107,9 @@
   tagMATH_1_1/tag
 /version
 version
-  id1.2-RC1/id
+  id1.2-RC2/id
   name1.2/name
-  tagMATH_1_2_RC1/tag
+  tagMATH_1_2_RC2/tag
 /version
   /versions
   developers

Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=628429r1=628428r2=628429view=diff
==
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Sat Feb 16 21:20:25 2008
@@ -39,7 +39,7 @@
 Commons Math Release Notes/title
   /properties
   body
-release version=1.2-RC1 date=TBD
+release version=1.2-RC2 date=TBD
 description=This release combines bug fixes and new features. Most notable
 among the new features are the estimation, optimization, geometry and ode
 packages added from the Mantissa library. Implementations of fast Fourier

Modified: commons/proper/math/trunk/src/site/xdoc/xdoc.xsl
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/xdoc.xsl?rev=628429r1=628428r2=628429view=diff
==
--- commons/proper/math/trunk/src/site/xdoc/xdoc.xsl (original)
+++ commons/proper/math/trunk/src/site/xdoc/xdoc.xsl Sat Feb 16 21:20:25 2008
@@ -14,7 +14,7 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-  --
+--
   
 xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
 xsl:template match=/




svn commit: r628431 - in /commons/proper/math/tags/MATH_1_2_RC2: ./ src/experimental/ src/java/org/apache/commons/math/random/ src/mantissa/ src/site/xdoc/

2008-02-16 Thread psteitz
Author: psteitz
Date: Sat Feb 16 21:40:12 2008
New Revision: 628431

URL: http://svn.apache.org/viewvc?rev=628431view=rev
Log:
Tagging 1.2-RC2

Added:
commons/proper/math/tags/MATH_1_2_RC2/
  - copied from r628421, commons/proper/math/trunk/
commons/proper/math/tags/MATH_1_2_RC2/RELEASE-NOTES.txt
  - copied unchanged from r628428, 
commons/proper/math/trunk/RELEASE-NOTES.txt
commons/proper/math/tags/MATH_1_2_RC2/pom.xml
  - copied unchanged from r628429, commons/proper/math/trunk/pom.xml
commons/proper/math/tags/MATH_1_2_RC2/project.xml
  - copied unchanged from r628429, commons/proper/math/trunk/project.xml
commons/proper/math/tags/MATH_1_2_RC2/release-notes.jsl
  - copied unchanged from r628428, 
commons/proper/math/trunk/release-notes.jsl
commons/proper/math/tags/MATH_1_2_RC2/src/site/xdoc/changes.xml
  - copied unchanged from r628429, 
commons/proper/math/trunk/src/site/xdoc/changes.xml
commons/proper/math/tags/MATH_1_2_RC2/src/site/xdoc/xdoc.xsl
  - copied unchanged from r628429, 
commons/proper/math/trunk/src/site/xdoc/xdoc.xsl
Removed:
commons/proper/math/tags/MATH_1_2_RC2/src/experimental/
commons/proper/math/tags/MATH_1_2_RC2/src/mantissa/
Modified:

commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/JDKRandomGenerator.java

commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomAdaptor.java

commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomGenerator.java

Modified: 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/JDKRandomGenerator.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/JDKRandomGenerator.java?rev=628431r1=628421r2=628431view=diff
==
--- 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/JDKRandomGenerator.java
 (original)
+++ 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/JDKRandomGenerator.java
 Sat Feb 16 21:40:12 2008
@@ -23,7 +23,7 @@
  * [EMAIL PROTECTED] RandomGenerator}.
  *
  * @since 1.1
- * @version $Revision:$ $Date$
+ * @version $Revision$ $Date$
  */
 public class JDKRandomGenerator extends Random implements RandomGenerator {
 /** Serializable version identifier */

Modified: 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomAdaptor.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomAdaptor.java?rev=628431r1=628421r2=628431view=diff
==
--- 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomAdaptor.java
 (original)
+++ 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomAdaptor.java
 Sat Feb 16 21:40:12 2008
@@ -23,7 +23,7 @@
  * [EMAIL PROTECTED] RandomGenerator}.   
  *
  * @since 1.1
- * @version $Revision:$ $Date$
+ * @version $Revision$ $Date$
  */
 public class RandomAdaptor extends Random implements RandomGenerator {
 

Modified: 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomGenerator.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomGenerator.java?rev=628431r1=628421r2=628431view=diff
==
--- 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomGenerator.java
 (original)
+++ 
commons/proper/math/tags/MATH_1_2_RC2/src/java/org/apache/commons/math/random/RandomGenerator.java
 Sat Feb 16 21:40:12 2008
@@ -23,7 +23,7 @@
  * implemented by [EMAIL PROTECTED] AbstractRandomGenerator}.  
  *
  * @since 1.1
- * @version $Revision:$ $Date$
+ * @version $Revision$ $Date$
  */
 public interface RandomGenerator extends Serializable {