| net.sf.jga.fn.adaptor.CompoundBinary
All known Subclasses: net.sf.jga.fn.AdaptorVisitor,
CompoundBinary | public class CompoundBinary extends BinaryFunctor (Code) | | Executes two BinaryFunctors, returning the results of the second.
Copyright © 2005 David A. Hall
|
serialVersionUID | final static long serialVersionUID(Code) | | |
accept | public void accept(net.sf.jga.fn.Visitor v)(Code) | | Calls the Visitor's visit(Constant) method, if it
implements the nested Visitor interface.
|
fn | public R fn(T1 arg1, T2 arg2)(Code) | | Executes both functors, returning the results of the second.
|
getFirstFunctor | public BinaryFunctor<T1, T2, ?> getFirstFunctor()(Code) | | the first of the two nested functors |
getSecondFunctor | public BinaryFunctor<T1, T2, R> getSecondFunctor()(Code) | | the second of the two nested functors |
|
|