All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.predicates.BinaryNot

java.lang.Object
   |
   +----COM.objectspace.jgl.predicates.BinaryNot

public final class BinaryNot
extends Object
implements BinaryPredicate
BinaryNot is a binary predicate that returns true if the result of executing a binary predicate on its operands is false.

See Also:
UnaryNot

Constructor Index

 o BinaryNot(BinaryPredicate)
Construct myself with a single binary predicate object.

Method Index

 o execute(Object, Object)
Perform my binary predicate on the operands and return true if the predicate returns false.

Constructors

 o BinaryNot
 public BinaryNot(BinaryPredicate predicate)
Construct myself with a single binary predicate object.

Parameters:
predicate - The binary predicate object.

Methods

 o execute
 public boolean execute(Object first,
                        Object second)
Perform my binary predicate on the operands and return true if the predicate returns false.

Parameters:
first - The first operand.
second - The second operand.
Returns:
!function( first, second )

All Packages  Class Hierarchy  This Package  Previous  Next  Index