| net.sf.jga.fn.adaptor.CompoundUnary
All known Subclasses: net.sf.jga.fn.AdaptorVisitor,
CompoundUnary | public class CompoundUnary extends UnaryFunctor (Code) | | Executes two UnaryFunctors, 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(T arg)(Code) | | Executes both functors, returning the results of the second.
|
getFirstFunctor | public UnaryFunctor<T, ?> getFirstFunctor()(Code) | | the first of the two nested functors |
getSecondFunctor | public UnaryFunctor<T, R> getSecondFunctor()(Code) | | the second of the two nested functors |
|
|