Package com.itextpdf.kernel.utils
Class PdfSplitter.SplitReadyListener
- java.lang.Object
-
- com.itextpdf.kernel.utils.PdfSplitter.SplitReadyListener
-
- All Implemented Interfaces:
PdfSplitter.IDocumentReadyListener
- Enclosing class:
- PdfSplitter
private static final class PdfSplitter.SplitReadyListener extends java.lang.Object implements PdfSplitter.IDocumentReadyListener
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<PdfDocument>
splitDocuments
-
Constructor Summary
Constructors Constructor Description SplitReadyListener(java.util.List<PdfDocument> splitDocuments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
documentReady(PdfDocument pdfDocument, PageRange pageRange)
Performs some action in case document is ready, e.g.
-
-
-
Field Detail
-
splitDocuments
private java.util.List<PdfDocument> splitDocuments
-
-
Constructor Detail
-
SplitReadyListener
public SplitReadyListener(java.util.List<PdfDocument> splitDocuments)
-
-
Method Detail
-
documentReady
public void documentReady(PdfDocument pdfDocument, PageRange pageRange)
Description copied from interface:PdfSplitter.IDocumentReadyListener
Performs some action in case document is ready, e.g. closes the document.- Specified by:
documentReady
in interfacePdfSplitter.IDocumentReadyListener
- Parameters:
pdfDocument
- the current document created as a result of the original document splitpageRange
- original document page range corresponding to the current document
-
-