Interface CommentProcessorFactory.IRepeatProcessor
- Enclosing class:
CommentProcessorFactory
public static interface CommentProcessorFactory.IRepeatProcessor
An interface that defines a processor for repeating a table row
for each element present in the given iterable collection of objects.
- Since:
- 1.0.0
- Version:
- ${version}
- Author:
- Joseph Verron, Tom Hombergs
-
Method Summary
Modifier and TypeMethodDescriptionvoid
repeatTableRow
(Iterable<Object> objects) Mark a table row to be copied once for each element in the passed-in iterable.
-
Method Details
-
repeatTableRow
Mark a table row to be copied once for each element in the passed-in iterable. Within each copy, the placeholder evaluation context is the next object in the iterable.- Parameters:
objects
- objects serving as evaluation context seeding a new copy.
-