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.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 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.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.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.