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 AbstractListGenerator
NewList. m_Generator
the generator to use.Methods in adams.flow.source that return AbstractListGenerator Modifier and Type Method Description AbstractListGenerator
NewList. getGenerator()
Returns the generator to use.Methods in adams.flow.source with parameters of type AbstractListGenerator Modifier and Type Method Description void
NewList. 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 class
FixedList
Simply outputs the supplied list elements.class
ForLoop
Emulates 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)
class
Wrapper
Wraps 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 AbstractListGenerator
Wrapper. m_Generator
the generator to use.Methods in adams.flow.source.newlist that return AbstractListGenerator Modifier and Type Method Description AbstractListGenerator
Wrapper. getGenerator()
Returns the generator to use.AbstractListGenerator
AbstractListGenerator. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractListGenerator
AbstractListGenerator. 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 void
Wrapper. setGenerator(AbstractListGenerator value)
Sets the generator to use.
-