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.pdfNotes PDFNotesBean, toolbar and related classes. 
com.qoppa.pdfProcess jPDFProcess main classes, used to manipulate PDF documents and pages. 
com.qoppa.pdfViewer PDFViewerBean and related classes. 
 

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 URLOnDemandPDFSource
          Implementation of the PDFSource interface that will load sections of a PDF on demand.
 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 ByteArrayPDFSource.equals(PDFSource other)
           
 boolean EmptyPDFSource.equals(PDFSource other)
           
 boolean FilePDFSource.equals(PDFSource other)
           
 boolean InputStreamPDFSource.equals(PDFSource other)
           
 boolean MBBPDFSource.equals(PDFSource other)
           
 boolean PDFSource.equals(PDFSource other)
          Tests if this source is equal to another source.
 boolean URLOnDemandPDFSource.equals(PDFSource other)
          Compares this PDF source to anothe URLOnDemandPDFSource for equality.
 boolean URLPDFSource.equals(PDFSource other)
           
 

Uses of PDFSource in com.qoppa.pdfNotes
 

Methods in com.qoppa.pdfNotes with parameters of type PDFSource
 void PDFNotesBean.loadPDF(PDFSource pdfSource)
          Load and display a PDF document using a PDFSource object
 

Uses of PDFSource in com.qoppa.pdfProcess
 

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

Uses of PDFSource in com.qoppa.pdfViewer
 

Methods in com.qoppa.pdfViewer with parameters of type PDFSource
 void PDFViewerBean.loadPDF(PDFSource source)
          Load and display a PDF document using an object that implements PDFSource.