RepeatParagraphProcessor.java

1
package pro.verron.officestamper.preset.processors.repeat;
2
3
import org.jspecify.annotations.Nullable;
4
import pro.verron.officestamper.api.ProcessorContext;
5
import pro.verron.officestamper.preset.CommentProcessorFactory;
6
7
/// Class used internally to repeat document elements. Used by the lib, should not be instantiated by clients.
8
///
9
/// @author Joseph Verron
10
/// @author Youssouf Naciri
11
/// @version ${version}
12
/// @since 1.2.2
13
public class RepeatParagraphProcessor
14
        extends RepeatProcessor
15
        implements CommentProcessorFactory.IParagraphRepeatProcessor {
16
17
    /// Constructs a new [RepeatParagraphProcessor] with the given processor context.
18
    ///
19
    /// @param processorContext the context in which this processor operates
20
    public RepeatParagraphProcessor(ProcessorContext processorContext) {
21
        super(processorContext);
22
    }
23
24
    @Override
25
    public void repeatParagraph(@Nullable Iterable<Object> items) {
26 1 1. repeatParagraph : removed call to pro/verron/officestamper/preset/processors/repeat/RepeatParagraphProcessor::repeat → TIMED_OUT
        repeat(items);
27
    }
28
}

Mutations

26

1.1
Location : repeatParagraph
Killed by : none
removed call to pro/verron/officestamper/preset/processors/repeat/RepeatParagraphProcessor::repeat → TIMED_OUT

Active mutators

Tests examined


Report generated by PIT 1.22.0