Author: scolebourne
Date: Sat May 13 03:44:37 2006
New Revision: 406071

URL: http://svn.apache.org/viewcvs?rev=406071&view=rev
Log:
Javadoc changes for v3.2

Modified:
    
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AllPredicate.java
    
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AnyPredicate.java
    
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/NonePredicate.java
    
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/OnePredicate.java

Modified: 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AllPredicate.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AllPredicate.java?rev=406071&r1=406070&r2=406071&view=diff
==============================================================================
--- 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AllPredicate.java
 (original)
+++ 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AllPredicate.java
 Sat May 13 03:44:37 2006
@@ -24,7 +24,10 @@
  * Predicate implementation that returns true if all the
  * predicates return true.
  * If the array of predicates is empty, then this predicate returns true.
- * 
+ * <p>
+ * NOTE: In versions prior to 3.2 an array size of zero or one
+ * threw an exception.
+ *
  * @since Commons Collections 3.0
  * @version $Revision$ $Date$
  *

Modified: 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AnyPredicate.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AnyPredicate.java?rev=406071&r1=406070&r2=406071&view=diff
==============================================================================
--- 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AnyPredicate.java
 (original)
+++ 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/AnyPredicate.java
 Sat May 13 03:44:37 2006
@@ -24,7 +24,10 @@
  * Predicate implementation that returns true if any of the
  * predicates return true.
  * If the array of predicates is empty, then this predicate returns false.
- * 
+ * <p>
+ * NOTE: In versions prior to 3.2 an array size of zero or one
+ * threw an exception.
+ *
  * @since Commons Collections 3.0
  * @version $Revision$ $Date$
  *

Modified: 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/NonePredicate.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/NonePredicate.java?rev=406071&r1=406070&r2=406071&view=diff
==============================================================================
--- 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/NonePredicate.java
 (original)
+++ 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/NonePredicate.java
 Sat May 13 03:44:37 2006
@@ -24,7 +24,10 @@
  * Predicate implementation that returns true if none of the
  * predicates return true.
  * If the array of predicates is empty, then this predicate returns true.
- * 
+ * <p>
+ * NOTE: In versions prior to 3.2 an array size of zero or one
+ * threw an exception.
+ *
  * @since Commons Collections 3.0
  * @version $Revision$ $Date$
  *

Modified: 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/OnePredicate.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/OnePredicate.java?rev=406071&r1=406070&r2=406071&view=diff
==============================================================================
--- 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/OnePredicate.java
 (original)
+++ 
jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/functors/OnePredicate.java
 Sat May 13 03:44:37 2006
@@ -24,7 +24,10 @@
  * Predicate implementation that returns true if only one of the
  * predicates return true.
  * If the array of predicates is empty, then this predicate returns false.
- * 
+ * <p>
+ * NOTE: In versions prior to 3.2 an array size of zero or one
+ * threw an exception.
+ *
  * @since Commons Collections 3.0
  * @version $Revision$ $Date$
  *



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to