Interface CommentProcessorFactory.IRepeatDocPartProcessor

Enclosing class:
CommentProcessorFactory

public static interface CommentProcessorFactory.IRepeatDocPartProcessor
Interface for processors which may be called to mark a document part 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.
Since:
1.0.0
Version:
${version}
Author:
Joseph Verron, Artem Medvedev
  • Method Summary

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

    • repeatDocPart

      void repeatDocPart(@Nullable List<Object> objects) throws Exception
      May be called to mark a document part 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.
      Throws:
      Exception - if the processing fails.