Home » pdfbox-1.1.0-src » org.apache.pdfbox.pdmodel.fdf » [javadoc | source]
org.apache.pdfbox.pdmodel.fdf
public class: FDFCatalog [javadoc | source]
java.lang.Object
   org.apache.pdfbox.pdmodel.fdf.FDFCatalog

All Implemented Interfaces:
    COSObjectable

This represents an FDF catalog that is part of the FDF document.
Constructor:
 public FDFCatalog() 
 public FDFCatalog(COSDictionary cat) 
    Constructor.
    Parameters:
    cat - The FDF documents catalog.
 public FDFCatalog(Element element) throws IOException 
    This will create an FDF catalog from an XFDF XML document.
    Parameters:
    element - The XML document that contains the XFDF data.
    Throws:
    IOException - If there is an error reading from the dom.
Method from org.apache.pdfbox.pdmodel.fdf.FDFCatalog Summary:
getCOSDictionary,   getCOSObject,   getFDF,   getSignature,   getVersion,   setFDF,   setSignature,   setVersion,   writeXML
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.pdfbox.pdmodel.fdf.FDFCatalog Detail:
 public COSDictionary getCOSDictionary() 
    Convert this standard java object to a COS object.
 public COSBase getCOSObject() 
    Convert this standard java object to a COS object.
 public FDFDictionary getFDF() 
    This will get the FDF dictionary.
 public PDSignature getSignature() 
    This will get the signature or null if there is none.
 public String getVersion() 
    This will get the version that was specified in the catalog dictionary.
 public  void setFDF(FDFDictionary fdf) 
    This will set the FDF document.
 public  void setSignature(PDSignature sig) 
    This will set the signature that is associated with this catalog.
 public  void setVersion(String version) 
    This will set the version of the FDF document.
 public  void writeXML(Writer output) throws IOException 
    This will write this element as an XML document.