tech.grasshopper.pdf.chapter.PaginatedChapter 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.chapter;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.SuperBuilder;
import tech.grasshopper.pdf.data.DisplayData;
@Data
@SuperBuilder
@EqualsAndHashCode(callSuper = false)
public abstract class PaginatedChapter extends Chapter {
public abstract void generatePage(int fromIndex, int toIndex, int pageNum) ;
public abstract DisplayData createPageData(int fromIndex, int toIndex) ;
}