Interface IRepeatProcessor

All Known Implementing Classes:
RepeatProcessor

public interface IRepeatProcessor
Interface for processors that can repeat a table row.
Version:
1.6.6
Author:
Joseph Verron
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    May be called to mark a table row to be copied once for each element in the passed-in list.
  • Method Details

    • repeatTableRow

      void repeatTableRow(List<Object> objects)
      May be called to mark a table row to be copied once for each element in the passed-in list. Within each copy of the row, all expressions are evaluated against one of the objects in the list.
      Parameters:
      objects - the objects which serve as context root for expressions found in the template table row.