Uses of Interface
com.qoppa.pdf.source.PDFSource

Packages that use PDFSource
com.qoppa.pdf.dom Classes representing the PDF document object model. 
com.qoppa.pdf.source PDFSource interface and implementations. 
com.qoppa.pdfProcess jPDFProcess main classes, used to manipulate PDF documents and pages. 
 

Uses of PDFSource in com.qoppa.pdf.dom
 

Methods in com.qoppa.pdf.dom that return PDFSource
 PDFSource IPDFDocument.getPDFSource()
          Returns an object representing the source of the PDF content.
 

Uses of PDFSource in com.qoppa.pdf.source
 

Classes in com.qoppa.pdf.source that implement PDFSource
 class ByteArrayPDFSource
          Implementation of the PDFSource interface when the document comes from a byte array.
 class EmptyPDFSource
          Implementation of the PDFSource interface when the document has no source, such as when creating a new document.
 class FilePDFSource
          Implementation of the PDFSource interface when the document comes from a file.
 class InputStreamPDFSource
          Implementation of the PDFSource interface when the document comes from an input stream.
 class MBBPDFSource
          Implementation of the PDFSource interface that uses a MappedByteBuffer.
 class RAFilePDFSource
          Implementation of the PDFSource interface that uses a RandomAccessFile.
 class URLPDFSource
          Implementation of the PDFSource interface when the document comes from a URL.
 

Methods in com.qoppa.pdf.source with parameters of type PDFSource
 boolean URLPDFSource.equals(PDFSource other)
           
 boolean PDFSource.equals(PDFSource other)
          Tests if this source is equal to another source.
 boolean MBBPDFSource.equals(PDFSource other)
           
 boolean InputStreamPDFSource.equals(PDFSource other)
           
 boolean FilePDFSource.equals(PDFSource other)
           
 boolean EmptyPDFSource.equals(PDFSource other)
           
 boolean ByteArrayPDFSource.equals(PDFSource other)
           
 

Uses of PDFSource in com.qoppa.pdfProcess
 

Methods in com.qoppa.pdfProcess with parameters of type PDFSource
 void PDFDocument.setPDFSource(PDFSource pdfSource)
           
 

Constructors in com.qoppa.pdfProcess with parameters of type PDFSource
PDFDocument(PDFSource source, IPassword password)
          Create a PDFDocument object using a PDFSource interface.