com.sun.pdfview |
|
Java Source File Name | Type | Comment |
BaseWatchable.java | Class | An abstract implementation of the watchable interface, that is extended
by the parser and renderer to do their thing. |
Cache.java | Class | A cache of PDF pages and images. |
Flag.java | Class | A generic synchronized flag, because Java doesn't have one. |
FullScreenWindow.java | Class | A window that takes over the full screen. |
HexDump.java | Class | |
ImageInfo.java | Class | |
NameTree.java | Class | A PDF name tree consists of three kinds of nodes:
- The root node contains only a kids entry, pointing to many
other objects
- An intermediate node contains the limits of all the children in
its subtree, and a kids entry for each child
- A leaf node contains a set of name-to-object mappings in a dictionary,
as well as the limits of the data contained in that child.
|
OutlineNode.java | Class | |
PageChangeListener.java | Interface | A listener to indicate that some control has asked for a particular
page to be displayed. |
PagePanel.java | Class | A Swing-based panel that displays a PDF page image. |
PDFCmd.java | Class | The abstract superclass of all drawing commands for a PDFPage. |
PDFDestination.java | Class | Represents a destination in a PDF file. |
PDFFile.java | Class | An encapsulation of a .pdf file. |
PDFImage.java | Class | |
PDFObject.java | Class | a class encapsulating all the possibilities of content for
an object in a PDF file.
A PDF object can be a simple type, like a Boolean, a Number,
a String, or the Null value. |
PDFPage.java | Class | A PDFPage encapsulates the parsed commands required to render a
single page from a PDFFile. |
PDFPaint.java | Class | PDFPaint is some kind of shader that knows how to fill a path. |
PDFParseException.java | Class | |
PDFParser.java | Class | PDFParser is the class that parses a PDF content stream and
produces PDFCmds for a PDFPage. |
PDFPrintPage.java | Class | A class representing a print job for a particular PDFFile. |
PDFRenderer.java | Class | This class turns a set of PDF Commands from a PDF page into an image. |
PDFShapeCmd.java | Class | Encapsulates a path. |
PDFTextFormat.java | Class | |
PDFViewer.java | Class | A PDF Viewer application that integrates with the
Meeting Central project. |
PDFXref.java | Class | a cross reference representing a line in the PDF cross referencing
table.
There are two forms of the PDFXref, destinguished by absolutely nothing.
The first type of PDFXref is used as indirect references in a PDFObject.
In this type, the id is an index number into the object cross reference
table. |
RefImage.java | Class | A BufferedImage subclass that holds a strong reference to its graphics
object. |
ThumbPanel.java | Class | A panel of thumbnails, one for each page of a PDFFile. |
Watchable.java | Interface | An interface for rendering or parsing, which can be stopped and started. |