Merging from -r468106:814127 of collections_jdk5_branch - namely where this code was generified; mostly in r738956.

Also see the following revisions:

    ------------------------------------------------------------------------
    r641231 | skestle | 2008-03-26 02:58:51 -0700 (Wed, 26 Mar 2008) | 1 line
    
    Started incorporating Edwin's patch for COLLECTIONS-253, in preparation for COLLECTIONS-290.
    ------------------------------------------------------------------------


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@815052 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-09-15 05:55:14 +00:00
parent 454ecf2fab
commit 79efcdac2a
1 changed files with 3 additions and 2 deletions

View File

@ -27,8 +27,9 @@ import org.apache.commons.collections.Predicate;
* @version $Revision$ $Date$
*
* @author Stephen Colebourne
* @author Stephen Kestle
*/
public interface PredicateDecorator extends Predicate {
public interface PredicateDecorator<T> extends Predicate<T> {
/**
* Gets the predicates being decorated as an array.
@ -38,6 +39,6 @@ public interface PredicateDecorator extends Predicate {
*
* @return the predicates being decorated
*/
Predicate[] getPredicates();
Predicate<? super T>[] getPredicates();
}