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.pdfText PDFText main class. 
 

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(com.qoppa.pdfViewer.actions.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.pdfText
 

Methods in com.qoppa.pdfText that throw PDFException
static DocumentInfo PDFText.getDocumentInfo(InputStream inStream, IPassword password)
          Returns a DocumentInfo object containing the information section of a PDF document (author, title, etc.)
 String PDFText.getText()
          Returns the text in the pdf document as a String.
 String PDFText.getText(int pageIndex)
          Returns text contained in the specified page of the pdf document as a String.
 Vector PDFText.getWords()
          Returns all words in the pdf document as a Vector of Strings.
 Vector PDFText.getWords(int pageIndex)
          Returns all words contained in the specified page of the pdf document as a Vector of Strings.
 Vector PDFText.getLinesWithPositions(int pageIndex)
          Returns position information for all the lines of text in the specified page of the PDF document.
 Vector PDFText.getWordsWithPositions(int pageIndex)
          Returns position information for all the words in the specified page of the PDF document.
 

Constructors in com.qoppa.pdfText that throw PDFException
PDFText(InputStream inStream, IPassword password)
          Creates a PDFText object from a PDF InputStream.
PDFText(String fileName, IPassword password)
          Loads a PDFText object from a file.
PDFText(URL url, IPassword password)
          Loads a PDFText object from a URL.