tech.grasshopper.pdf.structure.paginate.PaginatedSection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-pdf-report Show documentation
Show all versions of cucumber-pdf-report Show documentation
Generates Cucumber execution report in PDF format
package tech.grasshopper.pdf.structure.paginate;
import lombok.EqualsAndHashCode;
import lombok.experimental.SuperBuilder;
import tech.grasshopper.pdf.data.DisplayData;
import tech.grasshopper.pdf.structure.Section;
@SuperBuilder
@EqualsAndHashCode(callSuper = false)
public abstract class PaginatedSection extends Section {
public abstract void generateDisplay(int fromIndex, int toIndex);
public abstract DisplayData createDisplayData(int fromIndex, int toIndex);
}