Uses of Class
com.crionics.jpdf.PdfDocument

Packages that use PdfDocument
com.crionics.jpdf jPDF Core package, contains all main classes. 
com.crionics.jpdf.action Contains the implementation classes to define PDF Actions. 
com.crionics.jpdf.annotation Contains the implementation classes to define PDF #Annotations. 
com.crionics.jpdf.creator Contains all the classes to generate PDF using Java2D 
com.crionics.jpdf.destination Contains the objects used to specify a specific page and its viewing configuration within in a PDF document. 
com.crionics.jpdf.forms Contains the implementation of the tools allowing the manipulation of Form Fields. 
com.crionics.jpdf.outline Contains the implementation of the tools allowing the manipulation of outline (bookmarks). 
com.crionics.jpdf.viewer Contains GUI elements to integrate pdf rendering technologies in applications. 
 

Uses of PdfDocument in com.crionics.jpdf
 

Methods in com.crionics.jpdf that return PdfDocument
 PdfDocument MergerModule.splitPages(int[] indexPages)
          Creates a new document in Memory composed of the selected pages from the current document.
 

Methods in com.crionics.jpdf with parameters of type PdfDocument
 void MergerModule.append(PdfDocument docToAppend)
          Append the current document with the specified document.
 void MergerModule.append(PdfDocument[] docToAppend)
          Append the current document with the specified documents.
 void MergerModule.append(PdfDocument[] docToAppend, java.io.File destination)
          Append the current document with the specified documents and save the result in a new file.
 void MergerModule.append(PdfDocument[] docToAppend, java.io.File destination, int idxPageOfInsertion)
          Append the current document with the specified documents at the specified page position and save the result in a new file.
 void MergerModule.append(PdfDocument[] docToAppend, int idxPageOfInsertion)
          Append the current document with the specified documents at the specified page position.
 void MergerModule.append(PdfDocument docToAppend, java.io.File destination)
          Append the current document with the specified document and save the result in a new file.
 void MergerModule.append(PdfDocument docToAppend, java.io.File destination, int idxPageOfInsertion)
          Append the current document with the specified document at the specified page position and save the result in a new file.
 void MergerModule.append(PdfDocument docToAppend, int idxPageOfInsertion)
          Append the current document with the specified document at the specified page position.
 void MergerModule.appendPage(PdfDocument docToAppend, int[] indexPageToAppend, int[] indexPageDestination)
          Add a the specified pages of a document at the specified positions in the current position.
 void MergerModule.appendPage(PdfDocument docToAppend, int indexPageToAppend, int indexPageDestination)
          Add a the specified page of a document at the specified position in the current position.
 

Uses of PdfDocument in com.crionics.jpdf.action
 

Methods in com.crionics.jpdf.action with parameters of type PdfDocument
static URIAction URIAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
static SubmitFormAction SubmitFormAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
static ResetFormAction ResetFormAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
static NamedAction NamedAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
static LaunchAction LaunchAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
static JavaScriptAction JavaScriptAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
static HideAction HideAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
static GotoAction GotoAction.createInstance(PdfDocument doc)
          Allows the creation of a new Action into the Specified document.
 

Uses of PdfDocument in com.crionics.jpdf.annotation
 

Methods in com.crionics.jpdf.annotation with parameters of type PdfDocument
static LinkAnnotation LinkAnnotation.createInstance(PdfDocument doc)
          Allows the creation of a new Link Annotation into the Specified document.
 

Uses of PdfDocument in com.crionics.jpdf.creator
 

Methods in com.crionics.jpdf.creator with parameters of type PdfDocument
static Page Page.createInstance(PdfDocument doc)
          Allows the creation of a new Page into the Specified document.
static Page Page.createInstance(PdfDocument doc, int pageIndex)
          Allows the creation of a new Page into the Specified document at the requested position.
static Page Page.createInstance(PdfDocument doc, java.awt.print.PageFormat pageFormat)
          Allows the creation of a new Page into the Specified document.
static Page Page.createInstance(PdfDocument doc, java.awt.print.PageFormat pageFormat, int pageIndex)
          Allows the creation of a new Page into the Specified document.
 

Uses of PdfDocument in com.crionics.jpdf.destination
 

Methods in com.crionics.jpdf.destination with parameters of type PdfDocument
static RemotePageDestination RemotePageDestination.createInstance(PdfDocument doc)
          Allows the creation of a new Destination Object.
static LocalPageDestination LocalPageDestination.createInstance(PdfDocument doc)
          Allows the creation of a new Destination Object.
 

Uses of PdfDocument in com.crionics.jpdf.forms
 

Methods in com.crionics.jpdf.forms with parameters of type PdfDocument
static void ImageField.createInstance(PdfDocument doc, int pageIndex, AbstractImage image, java.awt.geom.AffineTransform op)
          Creates an image at position x,y on given page
static void ImageField.createInstance(PdfDocument doc, int pageIndex, AbstractImage image, int x, int y)
          Creates an image at position x,y on given page
static SignatureField SignatureField.createInstance(PdfDocument doc, java.lang.String name)
          Create a Invisible Signature in the specified document.
static TextField TextField.createInstance(PdfDocument doc, java.lang.String name, int pageIndex, java.awt.Rectangle rect)
           
static SignatureField SignatureField.createInstance(PdfDocument doc, java.lang.String name, int pageIndex, java.awt.Rectangle rect)
          Create a Blank Signature in the specified document.
static RadioButtonField RadioButtonField.createInstance(PdfDocument doc, java.lang.String name, int pageIndex, java.awt.Rectangle rect)
           
static ListBoxField ListBoxField.createInstance(PdfDocument doc, java.lang.String name, int pageIndex, java.awt.Rectangle rect)
           
static ComboBoxField ComboBoxField.createInstance(PdfDocument doc, java.lang.String name, int pageIndex, java.awt.Rectangle rect)
           
static CheckBoxField CheckBoxField.createInstance(PdfDocument doc, java.lang.String name, int pageIndex, java.awt.Rectangle rect)
           
static ButtonField ButtonField.createInstance(PdfDocument doc, java.lang.String name, int pageIndex, java.awt.Rectangle rect)
           
 

Uses of PdfDocument in com.crionics.jpdf.outline
 

Methods in com.crionics.jpdf.outline with parameters of type PdfDocument
static OutlineItemDestination OutlineItemDestination.createInstance(PdfDocument doc)
           
static OutlineItemBasic OutlineItemBasic.createInstance(PdfDocument doc)
           
static OutlineItemAction OutlineItemAction.createInstance(PdfDocument doc)
           
 

Uses of PdfDocument in com.crionics.jpdf.viewer
 

Methods in com.crionics.jpdf.viewer that return PdfDocument
 PdfDocument ViewerPanel.getPdfDocument()
           
 PdfDocument RendererPanel.getPdfDocument()
           
 PdfDocument IViewer.getPdfDocument()
          returns the underlying PDF document, or null if none displayed
 

Methods in com.crionics.jpdf.viewer with parameters of type PdfDocument
 void ViewerPanel.setDocument(PdfDocument thedoc)
           
 void RendererPanel.setDocument(PdfDocument thedoc)
           
 void IViewer.setDocument(PdfDocument thedoc)
          Loads and Displays the given document in the rendering panel.
 



Copyright © 1999-2007 Crionics. All Rights Reserved.