A B C D E F G H I K L M N O P R S T U V W X Y Z

A

a - Variable in class com.adobe.acrobat.sidecar.AffineTransform
matrix that describes the affine transform.
About_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the About Box.
activate() - Method in class com.adobe.acrobat.Viewer
Creates Layout of the Viewer component and prepares it for display.
activateWithoutBars() - Method in class com.adobe.acrobat.Viewer
Creates Layout of the Viewer component without a toolbar and without a status bar, and prepares it for display.
ActualSize_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display each page in its actual size.
AffineException - exception com.adobe.acrobat.sidecar.AffineException.
Signals that an (Affine)Matrix exception has occurred.
AffineException(String) - Constructor for class com.adobe.acrobat.sidecar.AffineException
Constructs a AffineException with the specified detail message.
AffineTransform - class com.adobe.acrobat.sidecar.AffineTransform.
 
AffineTransform() - Constructor for class com.adobe.acrobat.sidecar.AffineTransform
Constructs a new affine transform and sets the entries to identity.
AffineTransform(AffineTransform) - Constructor for class com.adobe.acrobat.sidecar.AffineTransform
Constructs a new affine transform from another affine transform (like clone)
AffineTransform(double, double, double, double, double, double) - Constructor for class com.adobe.acrobat.sidecar.AffineTransform
Constructs a new affine transform of 2 columns, 3 rows.
appendTransform(AffineTransform) - Method in class com.adobe.acrobat.sidecar.AffineTransform
(left) multiply new transform with this (computes X * A, where X is the current transform)
Author_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's author.
available() - Method in class com.adobe.acrobat.bytearray.ByteRangeInputStream
Return the number of bytes available on this ByteRangeInputStream for the next read to return without blocking.

B

b - Variable in class com.adobe.acrobat.sidecar.AffineTransform
matrix that describes the affine transform.
ByteArray - class com.adobe.acrobat.bytearray.ByteArray.
An abstract class that encapsulates an ordered, arbitrarily sized array of bytes. A ByteArray's contents are accessed via InputStreams, which are created in the createStream method, which takes a ContiguousByteRange describing a set of bytes and returns an InputStream returning the bytes at the positions defined by the ContiguousByteRange object in order. Implementers of subclasses of ByteArray must be able to guarantee that the contents of the ByteArray are invariant--i.e., if the nth byte of a given ByteArray is x today, it had better be x tomorrow.
ByteArray(ByteArraySource) - Constructor for class com.adobe.acrobat.bytearray.ByteArray
Create a new ByteArray From Source.
ByteArraySource - class com.adobe.acrobat.file.ByteArraySource.
Abstract superclass of objects that function as "handles" to potentially changeable arrays of bytes.
ByteArraySource() - Constructor for class com.adobe.acrobat.file.ByteArraySource
 
byteIndex(int) - Method in class com.adobe.acrobat.bytearray.ByteRange
Returns the number of integers in this ByteRange less than or equal to the given integer.
ByteRange - class com.adobe.acrobat.bytearray.ByteRange.
Object used to describe subsets of ByteArrays.
ByteRange(ContiguousByteRange) - Constructor for class com.adobe.acrobat.bytearray.ByteRange
Create a ByteRange which delimits all the integers in the given ContiguousByteRange.
ByteRange(int, int) - Constructor for class com.adobe.acrobat.bytearray.ByteRange
Create a ByteRange which contains all the integers between start and end inclusive.
ByteRange(String) - Constructor for class com.adobe.acrobat.bytearray.ByteRange
Create a new ByteRange based on a String representation.
ByteRangeInputStream - class com.adobe.acrobat.bytearray.ByteRangeInputStream.
InputStream subclass that, given a ContiguousByteRange and an InputStream, streams only those bytes from the given InputStream whose offsets are delimited by the ContiguousByteRange.
ByteRangeInputStream(InputStream, ContiguousByteRange) - Constructor for class com.adobe.acrobat.bytearray.ByteRangeInputStream
Create a new ByteRangeInputStream which provides only the bytes from the given InputStream at offsets contained in the given ContiguousByteRange.

C

c - Variable in class com.adobe.acrobat.sidecar.AffineTransform
matrix that describes the affine transform.
clone() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
Close_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Close the current window.
close() - Method in class com.adobe.acrobat.file.ByteArraySource
For ByteArraySources that can have their input streams or files closed
com.adobe.acrobat - package com.adobe.acrobat
 
computeLength() - Method in class com.adobe.acrobat.bytearray.ByteArray
Called by getLength, and only once in the lifetime of the ByteArray.
confirmValid() - Method in class com.adobe.acrobat.bytearray.ByteArray
Implementors of ByteArray subclasses might want to override this to provide on-the-fly checking for validity even if no byte-range requests are taking place.
contains(ByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
Returns true if the given ByteRange is completely enclosed in this ByteRange, i.e., every integer appearing in br appears in this ByteRange.
contains(ContiguousByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
Returns true if the ContiguousByteRange is completely enclosed in the ByteRange, i.e., every integer in cbr in contained in this ByteRange.
contains(int) - Method in class com.adobe.acrobat.bytearray.ByteRange
Test the ByteRange for inclusion of a particular integer.
ContiguousByteRange - class com.adobe.acrobat.bytearray.ContiguousByteRange.
Class representing a start and an end of a continguous range of integers.
ContiguousByteRange(int, int) - Constructor for class com.adobe.acrobat.bytearray.ContiguousByteRange
Create a new ContiguousByteRange spanning all the integers between start and end inclusive.
createStream(ContiguousByteRange) - Method in class com.adobe.acrobat.bytearray.ByteArray
Create an InputStream based on the bytes delimited by the given ContiguousByteRange.
CreationDate_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's creation date.
Creator_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's creator.

D

d - Variable in class com.adobe.acrobat.sidecar.AffineTransform
matrix that describes the affine transform.
deactivate() - Method in class com.adobe.acrobat.Viewer
The deactivate method should be called after the Viewer is no longer needed.
decapitate(int) - Method in class com.adobe.acrobat.bytearray.ByteRange
Return a new ByteRange which contains all the integers in this ByteRange except those whose values are less than start.
decapitate(int) - Method in class com.adobe.acrobat.bytearray.ContiguousByteRange
 
decRefCount() - Method in class com.adobe.acrobat.file.ByteArraySource
 
destroy() - Method in class com.adobe.acrobat.Viewer
The destroy method overrides the Applet destroy method and is called by the browser before the applet is destroyed.
DocInfo_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the document information dialog.
drawPage(int, Image, AffineTransform, Rectangle, Component) - Method in class com.adobe.acrobat.PDFDocument
Draw the contents of the given page number into the given Image object through the given AffineTransform.

E

EditCopy_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Copy selection.
EditCut_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Cut selection.
EditDelete_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Clear selection.
EditPaste_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Paste selection.
EditSelectAll_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Select all.
EditUndo_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Undo last "edit" change.
enabledDebug() - Static method in class com.adobe.acrobat.Viewer
Internal method to check for debugging enabled.
equals(AffineTransform) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Test for equality
equals(Object) - Method in class com.adobe.acrobat.bytearray.ByteRange
Determine if two ByteRanges are equal.
equals(Object) - Method in class com.adobe.acrobat.bytearray.ContiguousByteRange
Compares two ContiguousByteRanges.
execMenuItem(String) - Method in class com.adobe.acrobat.Viewer
Executes a Viewer command.

F

Find_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the find dialog.
FindAgain_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Search for the next occurance of the input string.
findBytes(byte[], int, int, boolean, int) - Method in class com.adobe.acrobat.bytearray.ByteArray
Locate the given sequence of bytes in this ByteArray with the given search criteria.
findString(String, int, int, boolean, int) - Method in class com.adobe.acrobat.bytearray.ByteArray
Search for the given String in the ByteArray subject to the given search criteria.
FirstPage_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Go to the first page.
FitHeight_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
FitPage_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display each page ....
FitVisible_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
FitVisibleHeight_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
FitVisibleWidth_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
FitWidth_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
FromFullScreen_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
FullScreen_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display Full screen.

G

GeneralPrefs_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the general preferences dialog.
geta() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
getAppletInfo() - Method in class com.adobe.acrobat.Viewer
Returns a localized string containing version and copyright information about the this Applet.
getb() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
getBeanDescriptor() - Method in class com.adobe.acrobat.ViewerBeanInfo
 
getBookmarks() - Method in class com.adobe.acrobat.PDFBookmark
Returns a vector of the descendants of this bookmark.
getByteArray() - Method in class com.adobe.acrobat.file.ByteArraySource
Get the ByteArray associated with this ByteArraySource.
getByteArraySource() - Method in class com.adobe.acrobat.bytearray.ByteArray
Get the associated ByteArraySource.
getByteArraySourceRelative(String) - Method in class com.adobe.acrobat.file.ByteArraySource
Get the ByteArraySource relative to this ByteArraySource by the given simple file specification.
getBytes(ContiguousByteRange, byte[]) - Method in class com.adobe.acrobat.bytearray.ByteArray
Fill the array of bytes with the bytes from the given ContiguousByteRange.
getBytes(ContiguousByteRange, byte[], int) - Method in class com.adobe.acrobat.bytearray.ByteArray
Fill the array of bytes starting at the element at the given offset with the bytes delimited by the given ContiguousByteRange.
getBytes(int, byte[]) - Method in class com.adobe.acrobat.bytearray.ByteArray
Fill the array of bytes b with bytes from this ByteArray starting at the given position to the end of b.
getBytes(int, int, byte[], int) - Method in class com.adobe.acrobat.bytearray.ByteArray
Fill the array of bytes b, starting at offset, with the len bytes in this ByteArray starting at pos.
getByteStream(ContiguousByteRange) - Method in class com.adobe.acrobat.bytearray.ByteArray
Get an InputStream that returns the bytes delimited by the given ContiguousByteRange in order by index.
getByteStream(int) - Method in class com.adobe.acrobat.bytearray.ByteArray
Get an InputStream that returns the bytes beginning at the given offset to the end of the ByteArray.
getByteStream(int, int) - Method in class com.adobe.acrobat.bytearray.ByteArray
Get an InputStream that returns the bytes beginning at the given offset to the end of the ByteArray or after len bytes, whichever comes first.
getc() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
getCodeBase() - Method in class com.adobe.acrobat.Viewer
Gets the base URL.
getContext() - Method in class com.adobe.acrobat.Viewer
This is an internal method.
getCurrentPage() - Method in class com.adobe.acrobat.Viewer
Get the page number of the currently displayed page.
getd() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
getDocumentInfo(String) - Method in class com.adobe.acrobat.PDFDocument
Get the entry in this PDFDocument's info dictionary as a String.
getDocumentInfoDate(String) - Method in class com.adobe.acrobat.PDFDocument
Get the entry in this PDFDocument's info dictionary as a Calendar.
getDocumentURL() - Method in class com.adobe.acrobat.Viewer
Returns the full URL of the document.
getEmptyByteRange() - Static method in class com.adobe.acrobat.bytearray.ByteRange
Get the empty ByteRange.
getEnclosingRange() - Method in class com.adobe.acrobat.bytearray.ByteRange
Get the ContiguousByteRange enclosing the entire ByteRange.
getEnd() - Method in class com.adobe.acrobat.bytearray.ByteRange
Gets the last integer in the ByteRange.
getEnd() - Method in class com.adobe.acrobat.bytearray.ContiguousByteRange
Get the highest integer in this ContiguousByteRange.
getFirstIntersection(ContiguousByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
Returns a Contiguous byte range that intersects this byte range
getFrame() - Method in class com.adobe.acrobat.Viewer
This is an internal method.
getFullName() - Method in class com.adobe.acrobat.file.ByteArraySource
Get a Full Path Name for a ByteArraySource, or return null if that's not a meaningful notion.
getIcon(int) - Method in class com.adobe.acrobat.ViewerBeanInfo
 
getIdentityMatrix() - Static method in class com.adobe.acrobat.sidecar.AffineTransform
 
getInverse() - Method in class com.adobe.acrobat.sidecar.AffineTransform
Find the affine transform, B, that has the property: B * X = identity.
getLength() - Method in class com.adobe.acrobat.bytearray.ByteArray
 
getLength() - Method in class com.adobe.acrobat.bytearray.ByteRange
 
getLength() - Method in class com.adobe.acrobat.bytearray.ContiguousByteRange
Get the total number of integers contained in this ContiguousByteRange
getMethodDescriptors() - Method in class com.adobe.acrobat.ViewerBeanInfo
 
getNthContiguousByteRange(int) - Method in class com.adobe.acrobat.bytearray.ByteRange
Get the nth contiguous range.
getNumPages() - Method in class com.adobe.acrobat.PDFDocument
Get the number of pages in this PDFDocument.
getPageCount() - Method in class com.adobe.acrobat.Viewer
Get the total number of pages in the current document.
getPageSize(int) - Method in class com.adobe.acrobat.PDFDocument
Get the size of the given page, in page space.
getParameterInfo() - Method in class com.adobe.acrobat.Viewer
Returns information about the parameters than are understood by this applet.
getProperties() - Method in class com.adobe.acrobat.Viewer
get all Viewer properties
getProperty(String) - Method in class com.adobe.acrobat.Viewer
get a Viewer property
getRootBookmark() - Method in class com.adobe.acrobat.Viewer
Gets the root bookmark associated with this document.
getRootBookmark() - Method in class com.adobe.acrobat.PDFDocument
Get the PDFBookmark that is the root of this PDFDocument's bookmark tree.
getSourceSpace() - Method in class com.adobe.acrobat.file.ByteArraySource
For registered file systems, this is the ByteArraySourceSpace associated with this ByteArraySource.
getStart() - Method in class com.adobe.acrobat.bytearray.ByteRange
Gets the first integer in a ByteRange.
getStart() - Method in class com.adobe.acrobat.bytearray.ContiguousByteRange
Get the lowest integer in this ContiguousByteRange.
getStore() - Method in class com.adobe.acrobat.PDFDocument
 
getTextForPage(int) - Method in class com.adobe.acrobat.Viewer
Get all of the text on a page.
getTitle() - Method in class com.adobe.acrobat.file.ByteArraySource
Get the "title" of this ByteArraySource, if any.
getTitle() - Method in class com.adobe.acrobat.PDFBookmark
Returns the title of the bookmark.
getUniversalByteRange() - Static method in class com.adobe.acrobat.bytearray.ByteRange
Get the ByteRange that contains all integers from 0 to Integer.MAX_VALUE-.
getURL() - Method in class com.adobe.acrobat.file.ByteArraySource
Get a URL that is equivalent to this ByteArraySource, or return null if that's not a meaningful notion.
getx() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
gety() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
gotoNamedDest(String) - Method in class com.adobe.acrobat.Viewer
go to a PDF named destination
GoToPage_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the Go To Page dialog.

H

hashCode() - Method in class com.adobe.acrobat.sidecar.AffineTransform
Returns a hashcode for this transform.
HideBookmarks_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 

I

incRefCount() - Method in class com.adobe.acrobat.file.ByteArraySource
maintain reference count for this byte array source
init() - Method in class com.adobe.acrobat.Viewer
Called by the browser or applet viewer to inform this applet that it has been loaded into the system.
intersect(ByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
Intersect a ByteRange with another ByteRange.
intersects(ByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
Returns true if the two ByteRanges have a non-empty intersection.
inverseTransform - Variable in class com.adobe.acrobat.sidecar.AffineTransform
 
isIdentity() - Method in class com.adobe.acrobat.sidecar.AffineTransform
Test for Identity of the 4x4 matrix Exclusive of translation
isInvertable() - Method in class com.adobe.acrobat.sidecar.AffineTransform
Test for invertability
isLeaf() - Method in class com.adobe.acrobat.PDFBookmark
Tests if the bookmark is a leaf node, i.e., has no descendants.
isOpen() - Method in class com.adobe.acrobat.PDFBookmark
Tests if the bookmark should be initially displayed with all of its descendants showing or not.
isRoot() - Method in class com.adobe.acrobat.PDFBookmark
Tests if the bookmark is the root bookmark.
isUniversal() - Method in class com.adobe.acrobat.bytearray.ByteRange
Returns true if every integer between 0 and Integer.MAX_VALUE-1 inclusive is included in this ByteRange.
isValid() - Method in class com.adobe.acrobat.bytearray.ByteArray
Returns true if the ByteArray is valid.

K

Keywords_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's keywords.

L

LastPage_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Go to the last page.
LineDown_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Scroll down by one line.
LineUp_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Scroll up by one line.
ListBindings_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the keyboard shortcuts dialog.

M

main(String[]) - Static method in class com.adobe.acrobat.Viewer
Application startup code.
mark(int) - Method in class com.adobe.acrobat.bytearray.ByteRangeInputStream
Mark the current position in this ByteRangeInputStream
markSupported() - Method in class com.adobe.acrobat.bytearray.ByteRangeInputStream
Return whether or not marking is supported on this ByteRangeInputStream.
ModDate_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's last modification date.
mult(double, double, double[]) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Multiply a vector by our matrix.

N

NextPage_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Go to the next page.
numRanges() - Method in class com.adobe.acrobat.bytearray.ByteRange
Get the number of continguous ranges in this ByteRange.

O

OneColumn_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the entire document in the single column mode.
Open_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the file selection dialog.
OpenHelpFile_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Open the help file.
OpenLicenseFile_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Open the license file.
openNewWindow() - Method in class com.adobe.acrobat.Viewer
Opens a new window on the current document.
OpenURL_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the URL selection dialog.

P

PageDown_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Page down one screenful.
PageOnly_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display pageonly, i.e., remove bookmark and thumbnail view
PageUp_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Page up one screenful.
PDFBookmark - class com.adobe.acrobat.PDFBookmark.
A PDFBookmark corresponds to the PDF Outline (also called bookmark) structure.
PDFDocument - class com.adobe.acrobat.PDFDocument.
Beans-level interface to a ui-less PDF document.
PDFDocument(ByteArraySource) - Constructor for class com.adobe.acrobat.PDFDocument
Create a PDFDocument from the given ByteArraySource.
PDFDocument(File) - Constructor for class com.adobe.acrobat.PDFDocument
Create a PDFDocument from the given File.
PDFDocument(URL) - Constructor for class com.adobe.acrobat.PDFDocument
Create a PDFDocument from the given URL.
performAction(Viewer) - Method in class com.adobe.acrobat.PDFBookmark
Activates the bookmark, i.e., the PDF action (or PDF destination) associated with this bookmark is activated.
preScale(double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
preScale(double, double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Premultiply the current transform with a scale
preTranslate(double, double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Premultiply the current transform with a translation
PrevPage_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Go to the previous page.
Print_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the Print document dialog.
printAll() - Method in class com.adobe.acrobat.Viewer
Print all pages of the document.
printPages(int, int) - Method in class com.adobe.acrobat.Viewer
Print a selected page range from the document
PrintSetup_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the Print Setup dialog dialog.
Producer_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's producer.

R

read() - Method in class com.adobe.acrobat.bytearray.ByteRangeInputStream
Read the next byte in the substream whose offset appears in this ByteRangeInputStream's associated ContiguousByteRange.
read(byte[], int, int) - Method in class com.adobe.acrobat.bytearray.ByteRangeInputStream
Read the next len bytes into the byte-buffer b starting at b[off] and return the number of bytes actually read.
registerViewerWindow(Frame) - Static method in class com.adobe.acrobat.Viewer
Register an active window with the Viewer.
Reload_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Reload the current document.
renderingDone() - Method in class com.adobe.acrobat.Viewer
Completion callback method that is called when a page is fully rendered.
renderingDone() - Method in interface com.adobe.acrobat.RenderingObserver
 
RenderingObserver - interface com.adobe.acrobat.RenderingObserver.
This is a callback interface.
renderPage(int) - Method in class com.adobe.acrobat.Viewer
Completely render the page with the given page number.
reset() - Method in class com.adobe.acrobat.bytearray.ByteRangeInputStream
Reset this ByteRangeInputStream back to wherever it was the last time mark was called.
rotate(double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Concatentate the current transform with a rotate

S

scale(double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
scale(double, double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Concatentate the current transform with a scale
setDocumentByteArray(byte[]) - Method in class com.adobe.acrobat.Viewer
Open a document from an array of bytes in memory.
setDocumentByteArraySource(ByteArraySource) - Method in class com.adobe.acrobat.Viewer
Open a document from a ByteArraySource.
setDocumentInputStream(InputStream) - Method in class com.adobe.acrobat.Viewer
Open a document from an InputStream.
setDocumentURL(String) - Method in class com.adobe.acrobat.Viewer
Open a document from a URL.
setEnableDebug(boolean) - Static method in class com.adobe.acrobat.Viewer
turn on certain debugging functions in the Viewer.
setInvalid(IOException) - Method in class com.adobe.acrobat.bytearray.ByteArray
Marks the ByteArray as invalid.
setItalicDegrees(double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Set an italic angle
setProperty(String, String) - Method in class com.adobe.acrobat.Viewer
Set a Viewer property.
setRenderingObserver(RenderingObserver) - Method in class com.adobe.acrobat.Viewer
Sets a rendering observer whose renderingDone method gets called after a page has been completely rendered with the renderPage method.
setTranslate(double, double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Set an absolute translation
ShowBookmarks_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Control Bookmarks
SinglePage_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the document in the single page mode.
skip(long) - Method in class com.adobe.acrobat.bytearray.ByteRangeInputStream
Skip at most n bytes in this ByteRangeInputStream.
Subject_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's subject.
subtract(ByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
Subtract all the integers in subtractor from this ByteRange, and return the result.
subtract(ContiguousByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
 

T

throwIfInvalid() - Method in class com.adobe.acrobat.bytearray.ByteArray
If the ByteArray is invalid, throw the exception that caused it to be invalid.
Thumbnails_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display thumbnails
Title_K - Static variable in class com.adobe.acrobat.PDFDocument
The info dictionary key for a PDFDocument's title.
toByteRange() - Method in class com.adobe.acrobat.bytearray.ContiguousByteRange
Create a ByteRange containing exactly the integers contained in this ContiguousByteRange
ToFullScreen_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
ToggleBookmarks_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
ToggleFullScreen_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
toRangeString() - Method in class com.adobe.acrobat.bytearray.ByteRange
Create a string representation of this ByteRange.
toString() - Method in class com.adobe.acrobat.bytearray.ContiguousByteRange
Create a string representation of this ContiguousByteRange
toString() - Method in class com.adobe.acrobat.sidecar.AffineTransform
 
transformPath(BezierPath) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Transform an incoming path by this affine.
transformPoint(FloatPoint) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Transform the point.
transformPoint(FloatPoint, FloatPoint) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Perform the affine transform on a point
transformPoints(double[], double[], int) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Perform the affine transform on a whole bunch 'o points
transformRectangle(Rectangle) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Transform the Rectangle.
translate(double, double) - Method in class com.adobe.acrobat.sidecar.AffineTransform
Concatenate the current transform with a translate
truncate(int) - Method in class com.adobe.acrobat.bytearray.ByteRange
Return a new ByteRange which contains all the integers in this ByteRange except those whose values are greater than or equal to end.
TwoColumn_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the entire document in the two column mode.
TwoColumnLeft_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 
TwoColumnRight_K - Static variable in interface com.adobe.acrobat.ViewerCommand
 

U

union(ByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
Union a ByteRange with another ByteRange.
union(ContiguousByteRange) - Method in class com.adobe.acrobat.bytearray.ByteRange
 
unregisterViewerWindow(Frame) - Static method in class com.adobe.acrobat.Viewer
Unregister an active window with the Viewer.

V

Viewer - class com.adobe.acrobat.Viewer.
Viewer is the primary exported class for the Acrobat Viewer.
Viewer() - Constructor for class com.adobe.acrobat.Viewer
Construct a Viewer object.
Viewer(boolean) - Constructor for class com.adobe.acrobat.Viewer
Construct a Viewer object, and optionally disables the use of the Font cache.
Viewer(String[]) - Constructor for class com.adobe.acrobat.Viewer
Construct a Viewer object, where the given commands are removed from the UI of the viewer (from toolbar, menubar, and popup menus).
ViewerBeanInfo - class com.adobe.acrobat.ViewerBeanInfo.
This is the information file for the Viewer bean.
ViewerBeanInfo() - Constructor for class com.adobe.acrobat.ViewerBeanInfo
 
ViewerCommand - interface com.adobe.acrobat.ViewerCommand.
This interface defines the names of the commands that could be used as an argument to the Viewer.execMenuItem method.

W

Window_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Opens a new window on the current document.

X

x - Variable in class com.adobe.acrobat.sidecar.AffineTransform
matrix that describes the affine transform.

Y

y - Variable in class com.adobe.acrobat.sidecar.AffineTransform
matrix that describes the affine transform.

Z

ZoomTo_K - Static variable in interface com.adobe.acrobat.ViewerCommand
Display the Zoom To dialog.
zoomTo(double) - Method in class com.adobe.acrobat.Viewer
Zoom the current page to the the given zoom level in percentages.

A B C D E F G H I K L M N O P R S T U V W X Y Z