Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
PDFSource |
IPDFDocument.getPDFSource()
Returns an object representing the source of the PDF content.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
void |
PDFNotesBean.loadPDF(PDFSource pdfSource)
Load and display a PDF document using a PDFSource object
|
Constructor and Description |
---|
PDFDocument(PDFSource source,
IPassword password)
Create a PDFDocument object using a PDFSource interface.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFViewerBean.loadPDF(PDFSource source)
Load and display a PDF document using an object that implements PDFSource.
|