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