Package adams.flow.generator
Interface Generator<T extends Actor>
-
- Type Parameters:
T
- the type of actor that owns this generator
- All Known Implementing Classes:
AbstractFlowGenerator
,Template
public interface Generator<T extends Actor>
Generator interface for flow generators.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Actor
generate()
Generates the flow and returns it.T
getOwner()
Returns the owner.void
setOwner(T value)
Sets the owner.
-