Uses of Class
com.qoppa.pdf.PDFException

Packages that use PDFException
com.qoppa.pdf General classes used by different objects throughout the library. 
com.qoppa.pdf.dom Document object model classes. 
com.qoppa.pdf.form All form fields related classes. 
com.qoppa.pdfViewer PDFViewerBean and related classes. 
 

Uses of PDFException in com.qoppa.pdf
 

Subclasses of PDFException in com.qoppa.pdf
 class PDFPermissionException
          Exception thrown when there is any permission error.
 

Methods in com.qoppa.pdf that throw PDFException
 void IEmbeddedFile.saveFile(File outFile)
          Saves the content of the embedded file to the given File.
 void IEmbeddedFile.open(String tempFileName)
          Open the embedded file.
 byte[] IEmbeddedFile.getDeflatedContents()
          Get the content of the embedded file.
 int IEmbeddedFile.getSize()
          Get the size of the file content in bytes.
 void IEmbeddedFile.write(OutputStream outStream)
          Write the file content to an output stream.
static DocumentInfo DocumentInfo.getDocumentInfo(String fileName, IPassword passwords)
          Static method to get the document information from a document in a file.
static DocumentInfo DocumentInfo.getDocumentInfo(InputStream inStream, IPassword password)
          Static method to get the document information from a document from an InputStream.
static DocumentInfo DocumentInfo.getDocumentInfo(URL url, IPassword password)
          Static method to get the document information from a document from a URL.
 void Bookmark.addAction(Action action)
          Adds an Action to this Bookmark
 Bookmark Bookmark.addChildBookmark(String title)
          Add a child bookmark.
 Bookmark Bookmark.insertChildBookmark(String title, int index)
          Insert a child bookmark at the given index in the node's children.
 void Bookmark.removeChildBookmark(int index)
          Removes a child bookmark from the bookmark
 

Constructors in com.qoppa.pdf that throw PDFException
SigningInformation(String pkcs12File, String ksPWD, String entryAlias, String aliasPWD)
           
SigningInformation(KeyStore ks, String entryAlias, String aliasPWD)
           
 

Uses of PDFException in com.qoppa.pdf.dom
 

Methods in com.qoppa.pdf.dom that throw PDFException
 Vector IPDFPage.getAnnotations()
          Returns a list of PDF annotations in this page.
 TextSelection IPDFPage.selectText(Rectangle2D selectArea)
          Selects the text in an area of the page.
 TextSelection IPDFPage.clearTextSelection()
          Clear any text selection on the page.
 String IPDFDocument.getText()
          Returns the text content of the entire document, as a String
 String IPDFDocument.getText(int pageIndex)
          Returns the text content of this page as a String.
 

Uses of PDFException in com.qoppa.pdf.form
 

Methods in com.qoppa.pdf.form that throw PDFException
 void TextField.setValue(String value)
          Sets the value for this text field.
 void TextField.setHorzTextAlign(int justify)
          Sets the text alignment for this field.
 void RadioButtonGroupField.setValue(String value)
          Sets the value for this radio button group field.
 void FormField.reset()
          Resets the field to its default value.
 void FormField.flattenField()
          Flattens the field into the document's content layer.
 void ChoiceField.setValue(String value)
          Sets the selected export value for this choice field.
 void ChoiceField.setValues(Vector values)
          Sets the list of currently selected values for this choice field.
 void CheckBoxField.setValue(String value)
          Sets the value for the check box field.
 void AcroForm.exportAsXFDF(String fileName)
          Exports AcroForm field data to a file in XFDF format.
 void AcroForm.exportAsFDF(String fileName)
          Exports AcroForm field data to a file in FDF format.
 void AcroForm.exportAsXDP(String fileName)
          Exports XFA field data to a file in XDP format.
 void AcroForm.exportAsXDP(OutputStream outStream, String pdfReference)
          Exports XFA field data to an OutputStream.
 void AcroForm.exportAsXFDF(OutputStream outStream, String pathToPDFFile)
          Exports AcroForm field data to an output stream in XML format.
 void AcroForm.exportAsFDF(OutputStream outStream, String pathToPDFFile)
          Exports AcroForm field data to an output stream in FDF format.
 void AcroForm.importFDF(String fileName)
          Import Acroform field data from a file in FDF Format.
 void AcroForm.importFDF(InputStream inStream)
          Imports AcroForm field data from an input stream in FDF format.
 void AcroForm.importXFDF(String fileName)
          Imports Acroform fields data from a file in XFDF Format.
 void AcroForm.importXDP(String fileName)
          Imports XFA field data from a file in XDP format.
 void AcroForm.importXDP(InputStream inStream)
          Imports XFA field data from an InputStream in XDP format.
 void AcroForm.importXFDF(nanoxml.XMLElement topElement)
          Import AcroForm field data from an xml element representing the top element of an fdf file.
 void AcroForm.importXFDF(InputStream inStream)
          Imports AcroForm field data from an input stream in XFDF format.
 void AcroForm.resetFields()
          Reset the form fields to their default value.
 void AcroForm.exportAsXML(OutputStream outStream, boolean useHierarchy)
          Export field values in a simple XML format.
 void AcroForm.exportAsXML(String fileName, boolean useHierarchy)
          Export field values in a simple XML format.
 

Uses of PDFException in com.qoppa.pdfViewer
 

Methods in com.qoppa.pdfViewer that throw PDFException
 void PDFViewerBean.loadPDF(URL url)
          Load and display a PDF document using a URL.
 void PDFViewerBean.loadPDF(InputStream inStream)
          Load and display a PDF document using an InputStream.
 void PDFViewerBean.loadPDF(String fileName)
          Load and display a PDF document using a file name.
 void PDFViewerBean.openFile()
          Initiates the file open process.