org.apache.commons.collections.functors

Interface PredicateDecorator

public interface PredicateDecorator extends Predicate

Defines a predicate that decorates one or more other predicates.

This interface enables tools to access the decorated predicates.

Since: Commons Collections 3.1

Version: $Revision: 155406 $ $Date: 2005-02-26 12:55:26 +0000 (Sat, 26 Feb 2005) $

Author: Stephen Colebourne

Method Summary
Predicate[]getPredicates()
Gets the predicates being decorated as an array.

Method Detail

getPredicates

public Predicate[] getPredicates()
Gets the predicates being decorated as an array.

The array may be the internal data structure of the predicate and thus should not be altered.

Returns: the predicates being decorated

Copyright © 2001-2008 Apache Software Foundation. All Rights Reserved.