Interface CommentProcessorFactory.IRepeatDocPartProcessor

Enclosing class:
CommentProcessorFactory

public static interface CommentProcessorFactory.IRepeatDocPartProcessor
An interface that defines a processor for repeating a document part for each element present in the given iterable collection of objects.
Since:
1.0.0
Version:
${version}
Author:
Joseph Verron, Artem Medvedev
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Mark a document part to be copied once for each element in the passed-in iterable.
  • Method Details

    • repeatDocPart

      void repeatDocPart(@Nullable Iterable<Object> objects)
      Mark a document part 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.