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

com.lowagie.text.pdf.collection.PdfCollectionSchema Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
package com.lowagie.text.pdf.collection;

import com.lowagie.text.pdf.PdfDictionary;
import com.lowagie.text.pdf.PdfName;

public class PdfCollectionSchema extends PdfDictionary {
    /**
     * Creates a Collection Schema dictionary.
     */
    public PdfCollectionSchema() {
        super(PdfName.COLLECTIONSCHEMA);
    }
    
    /**
     * Adds a Collection field to the Schema.
     * @param name    the name of the collection field
     * @param field    a Collection Field
     */
    public void addField(String name, PdfCollectionField field) {
        put(new PdfName(name), field);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy