Javadoc changes for v3.2

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@406071 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2006-05-13 10:44:37 +00:00
parent 6468798462
commit 5c54256a5a
4 changed files with 16 additions and 4 deletions

View File

@ -24,7 +24,10 @@ import org.apache.commons.collections.Predicate;
* 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$
*

View File

@ -24,7 +24,10 @@ import org.apache.commons.collections.Predicate;
* 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$
*

View File

@ -24,7 +24,10 @@ import org.apache.commons.collections.Predicate;
* 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$
*

View File

@ -24,7 +24,10 @@ import org.apache.commons.collections.Predicate;
* 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$
*