org.picocontainer.gems.constraints
Class Or
java.lang.Object
org.picocontainer.parameters.CollectionComponentParameter
org.picocontainer.gems.constraints.AbstractConstraint
org.picocontainer.gems.constraints.Or
- All Implemented Interfaces:
- Serializable, Constraint, org.picocontainer.Parameter
public final class Or
- extends AbstractConstraint
Aggregates multiple constraints together using boolean OR logic.
Constraints are short-circuited as in java.
- Author:
- Nick Sieger
- See Also:
- Serialized Form
| Nested classes/interfaces inherited from interface org.picocontainer.Parameter |
org.picocontainer.Parameter.DelegateResolver, org.picocontainer.Parameter.NotResolved, org.picocontainer.Parameter.Resolver, org.picocontainer.Parameter.ValueResolver |
| Fields inherited from class org.picocontainer.parameters.CollectionComponentParameter |
ARRAY, ARRAY_ALLOW_EMPTY |
| Fields inherited from interface org.picocontainer.Parameter |
DEFAULT, ZERO |
|
Method Summary |
void |
accept(org.picocontainer.PicoVisitor visitor)
|
boolean |
evaluate(org.picocontainer.ComponentAdapter adapter)
Evaluate whether the given component adapter matches this constraint. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Or
public Or(Constraint c1,
Constraint c2)
Or
public Or(Constraint c1,
Constraint c2,
Constraint c3)
Or
public Or(Constraint[] cc)
evaluate
public boolean evaluate(org.picocontainer.ComponentAdapter adapter)
- Description copied from interface:
Constraint
- Evaluate whether the given component adapter matches this constraint.
- Specified by:
evaluate in interface Constraint- Specified by:
evaluate in class AbstractConstraint
- Parameters:
adapter - a ComponentAdapter value
- Returns:
- true if the adapter matches the constraint
accept
public void accept(org.picocontainer.PicoVisitor visitor)
- Specified by:
accept in interface org.picocontainer.Parameter- Overrides:
accept in class org.picocontainer.parameters.CollectionComponentParameter
Copyright © 2003-2009 Codehaus. All Rights Reserved.