Uses of Class
adams.flow.source.newlist.AbstractListGenerator
-
Packages that use AbstractListGenerator Package Description adams.flow.source adams.flow.source.newlist -
-
Uses of AbstractListGenerator in adams.flow.source
Fields in adams.flow.source declared as AbstractListGenerator Modifier and Type Field Description protected AbstractListGeneratorNewList. m_Generatorthe generator to use.Methods in adams.flow.source that return AbstractListGenerator Modifier and Type Method Description AbstractListGeneratorNewList. getGenerator()Returns the generator to use.Methods in adams.flow.source with parameters of type AbstractListGenerator Modifier and Type Method Description voidNewList. setGenerator(AbstractListGenerator value)Sets the generator to use. -
Uses of AbstractListGenerator in adams.flow.source.newlist
Subclasses of AbstractListGenerator in adams.flow.source.newlist Modifier and Type Class Description classFixedListSimply outputs the supplied list elements.classForLoopEmulates the following for-loop for integer IDs:
- positive step size:
for (int i = lower; i <= upper; i += step)
- negative step size:
for (int i = upper; i >= lower; i += step)
classWrapperWraps the list items produced by the specified generator with user-supplied prefix and suffix.Fields in adams.flow.source.newlist declared as AbstractListGenerator Modifier and Type Field Description protected AbstractListGeneratorWrapper. m_Generatorthe generator to use.Methods in adams.flow.source.newlist that return AbstractListGenerator Modifier and Type Method Description AbstractListGeneratorWrapper. getGenerator()Returns the generator to use.AbstractListGeneratorAbstractListGenerator. shallowCopy()Returns a shallow copy of itself, i.e., based on the commandline options.AbstractListGeneratorAbstractListGenerator. shallowCopy(boolean expand)Returns a shallow copy of itself, i.e., based on the commandline options.Methods in adams.flow.source.newlist with parameters of type AbstractListGenerator Modifier and Type Method Description voidWrapper. setGenerator(AbstractListGenerator value)Sets the generator to use.
-