All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.grasshopper.pdf.structure.paginate.PaginatedSection Maven / Gradle / Ivy

There is a newer version: 2.14.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy