net.sf.collections15
Interface MultplePredicateDecorator<E>

All Known Implementing Classes:
AbstractMultplePredicateDecorator, AllPredicate, AnyPredicate, NonePredicate, OnePredicate, SwitchTransformer

public interface MultplePredicateDecorator<E>

Interface for any object that decorates multiple Predicate instances.

This interface enables tools to access the decorated Predicates.

Since:
Collections15 1.0
Author:
Chris Lambrou

Method Summary
 java.util.List<Predicate<? super E>> getDecoratedPredicates()
          Returns a list of the Predicates decorated by this Predicate.
 

Method Detail

getDecoratedPredicates

java.util.List<Predicate<? super E>> getDecoratedPredicates()
Returns a list of the Predicates decorated by this Predicate.

Returns:
A list of the decorated Predicates. The returned list is unmodifiable.


Copyright © 2001-2005 SourceForge.net. All Rights Reserved.