Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

edu.ucsb.ccs.jaqual
Interface Operator  view Operator download Operator.java


public interface Operator

Interface for an object that transforms other objects. Using the ForAll quantifier, Operators allow you to easily apply some function to all the elements in a Collection. Operators are similar to Assertions, but an Assertion simply evaluates to a boolean leaving it's argument unchanged. An Operator performs some operation on the argument.

Version:
$Id: $

Method Summary
 void execute(java.lang.Object o)
          Execute the operator on an object.
 

Method Detail

execute

public void execute(java.lang.Object o)
Execute the operator on an object.