Package | Description |
---|---|
com.qoppa.pdf |
General classes used by different objects throughout the library.
|
com.qoppa.pdf.actions |
Classes that represent user actions.
|
com.qoppa.pdf.annotations |
Classes representing PDF annotations.
|
com.qoppa.pdf.dom |
Classes representing the PDF document object model.
|
com.qoppa.pdfProcess |
jPDFProcess main classes, used to manipulate PDF documents and pages.
|
Modifier and Type | Method and Description |
---|---|
Vector<Action> |
Bookmark.getActions()
Gets the list of actions for this Bookmark.
|
Modifier and Type | Method and Description |
---|---|
void |
Bookmark.addAction(Action action)
Adds an Action to this Bookmark
|
Modifier and Type | Method and Description |
---|---|
void |
Bookmark.setActions(Vector<Action> actions)
Sets the list of actions for this Bookmark.
|
Modifier and Type | Class and Description |
---|---|
class |
GotoPageAction
A GotoPageAction can be used to position the display a page in a PDF
document.
|
class |
GotoPageRemoteAction
Action that tells the viewer to go to a page in
a different PDF document.
|
class |
HideShowAction
Action that tells the viewer to show or hide fields.
|
class |
JSAction
Action that executes a JavaScript.
|
class |
LaunchAction
Action that tells the viewer to go to 'launch' a
given file.
|
class |
NamedAction
Actions in a document defined by "name".
|
class |
NullAction
NO-OP Action
|
class |
ResetForm
Action that tells the viewer to reset the fields in the form (if there is any)
to their default values.
|
class |
SetOCGState
Action that changes an optional content group's (layer) visibility.
|
class |
SubmitFormAction
Action that submits a form.
|
class |
URLAction
Action that tells the viewer to open a web page
from the URL.
|
Modifier and Type | Method and Description |
---|---|
Action |
Action.getNextAction()
Returns the next Action to be performed after this Action.
|
Modifier and Type | Method and Description |
---|---|
Vector<Action> |
TriggerActions.getBlurActions()
Get the list of actions to be performed on blur (focus lost).
|
Vector<Action> |
TriggerActions.getCalculateActions()
Get the list of actions to be performed when another field changes
|
Vector<Action> |
TriggerActions.getDocCloseActions()
Get the list of actions to be performed when the document is closed.
|
Vector<Action> |
TriggerActions.getDocDidPrintActions()
Get the list of actions to be performed when the document has printed.
|
Vector<Action> |
TriggerActions.getDocDidSaveActions()
Get the list of actions to be performed when the document has been saved.
|
Vector<Action> |
TriggerActions.getDocWillPrintActions()
Get the list of actions to be performed when the document will print.
|
Vector<Action> |
TriggerActions.getDocWillSaveActions()
Get the list of actions to be performed when the document will be saved.
|
Vector<Action> |
TriggerActions.getFocusActions()
Get the list of actions to be performed when focus is gained.
|
Vector<Action> |
TriggerActions.getFormatActions()
Get the list of actions to be executed before a field is formatted
|
Vector<Action> |
TriggerActions.getKeystrokeActions()
Get the list of actions to be performed on a keystroke.
|
Vector<Action> |
TriggerActions.getMouseDownActions()
Get the list of action to be executed on Mouse Down events as a Vector of Actions.
|
Vector<Action> |
TriggerActions.getMouseEnteredActions()
Get the list of action to be executed on Mouse Entered events as a Vector of Actions.
|
Vector<Action> |
TriggerActions.getMouseExitedActions()
Get the list of action to be executed on Mouse Exited events as a Vector of Actions.
|
Vector<Action> |
TriggerActions.getMouseUpActions()
Get the list of action to be executed on Mouse Up events as a Vector of Actions.
|
Vector<Action> |
TriggerActions.getPageCloseActions()
Get the list of actions to be performed when the page is closed.
|
Vector<Action> |
TriggerActions.getPageOpenActions()
Get the list of actions to be performed when the page is opened.
|
Vector<Action> |
TriggerActions.getValidateActions()
Get the list of actions to be performed when a field value is changed
|
Vector<Action> |
TriggerActions.put(String key,
Vector<Action> value)
Overrides Hashtable method to keep track of modifications.
|
Vector<Action> |
TriggerActions.remove(Object key)
Overrides Hashtable method to keep track of modifications.
|
Modifier and Type | Method and Description |
---|---|
void |
IPDFActionHandler.handleAction(Action action)
Handle an action
|
void |
Action.setNextAction(Action next)
Sets the next Action to be performed after this Action.
|
Modifier and Type | Method and Description |
---|---|
Vector<Action> |
TriggerActions.put(String key,
Vector<Action> value)
Overrides Hashtable method to keep track of modifications.
|
void |
TriggerActions.putAll(Map<? extends String,? extends Vector<Action>> t) |
Modifier and Type | Method and Description |
---|---|
List<Action> |
Annotation.getActions()
Returns a list of actions to perform when this annotation is 'activated'
|
Modifier and Type | Method and Description |
---|---|
void |
Annotation.setActions(List<? extends Action> actions)
Sets this annotation's actions.
|
Modifier and Type | Method and Description |
---|---|
Action |
IPDFDocument.getOpenAction()
Returns the list of actions to run when the document is opened.
|
Modifier and Type | Method and Description |
---|---|
Action |
PDFDocument.getOpenAction()
Returns the Action to run when the document is opened.
|