Java Code Examples for com.lowagie.text.pdf.PdfName#COLLECTIONITEM
The following examples show how to use
com.lowagie.text.pdf.PdfName#COLLECTIONITEM .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PdfCollectionItem.java From gcs with Mozilla Public License 2.0 | 4 votes |
/** * Constructs a Collection Item that can be added to a PdfFileSpecification. */ public PdfCollectionItem(PdfCollectionSchema schema) { super(PdfName.COLLECTIONITEM); this.schema = schema; }
Example 2
Source File: PdfCollectionItem.java From itext2 with GNU Lesser General Public License v3.0 | 4 votes |
/** * Constructs a Collection Item that can be added to a PdfFileSpecification. */ public PdfCollectionItem(PdfCollectionSchema schema) { super(PdfName.COLLECTIONITEM); this.schema = schema; }