| net.sf.jga.fn.adaptor.GenerateBinary
All known Subclasses: net.sf.jga.fn.AdaptorVisitor,
GenerateBinary | public class GenerateBinary extends BinaryFunctor (Code) | | BinaryFunctor that returns the result of a nested Generator. The arguments
to the BinaryFunctor are ignored.
Copyright © 2004-2005 David A. Hall
author: David A. Hall |
Method Summary | |
public void | accept(net.sf.jga.fn.Visitor v) Calls the Visitor's visit(GenerateBinary) method, if it
implements the nested Visitor interface. | public R | fn(T1 arg1, T2 arg2) Returns the results of invoking the generator. | public Generator<R> | getGenerator() Returns the generator whose results are returned. | public String | toString() |
serialVersionUID | final static long serialVersionUID(Code) | | |
accept | public void accept(net.sf.jga.fn.Visitor v)(Code) | | Calls the Visitor's visit(GenerateBinary) method, if it
implements the nested Visitor interface.
|
fn | public R fn(T1 arg1, T2 arg2)(Code) | | Returns the results of invoking the generator. The arguments are
ignored.
|
getGenerator | public Generator<R> getGenerator()(Code) | | Returns the generator whose results are returned.
|
|
|