Package com.itextpdf.kernel.di.pagetree
Interface IPageTreeListFactory
-
- All Known Implementing Classes:
DefaultPageTreeListFactory
public interface IPageTreeListFactory
This interface is used to create a list of pages from a pages dictionary.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> ISimpleList<T>
createList(PdfDictionary pagesDictionary)
Creates a list based on the value of the pages dictionary.
-
-
-
Method Detail
-
createList
<T> ISimpleList<T> createList(PdfDictionary pagesDictionary)
Creates a list based on the value of the pages dictionary. If null, it means we are dealing with document creation. In other cases the pdf document pages dictionary will be passed.- Type Parameters:
T
- The type of the list- Parameters:
pagesDictionary
- The pages dictionary- Returns:
- The list
-
-