Uses of Interface
com.qoppa.pdf.Bookmark

Packages that use Bookmark
com.qoppa.pdf General classes used by different objects throughout the library. 
com.qoppa.pdf.dom Classes representing the PDF document object model. 
com.qoppa.pdfAssemble jPDFAssemble main classes, used to assemble PDF documents. 
com.qoppa.pdfProcess jPDFProcess main classes, used to manipulate PDF documents and pages. 
 

Uses of Bookmark in com.qoppa.pdf
 

Methods in com.qoppa.pdf that return Bookmark
 Bookmark Bookmark.addChildBookmark(String title)
          Add a child bookmark.
 Bookmark Bookmark.insertChildBookmark(String title, int index)
          Insert a child bookmark at the given index in the node's children.
 Bookmark Bookmark.getParentBookmark()
          Returns the parent node / Bookmark.
 Bookmark Bookmark.getChildBookmarkAt(int childIndex)
          Returns the child bookmark at the given index.
 

Methods in com.qoppa.pdf with parameters of type Bookmark
 int Bookmark.getBookmarkIndex(Bookmark bookmark)
          Returns the index of the bookmark node in the node's children.
 

Uses of Bookmark in com.qoppa.pdf.dom
 

Methods in com.qoppa.pdf.dom that return Bookmark
 Bookmark IPDFDocument.getRootBookmark()
          Returns the bookmark tree for this document.
 

Uses of Bookmark in com.qoppa.pdfAssemble
 

Methods in com.qoppa.pdfAssemble that return Bookmark
 Bookmark PDFAssemble.createRootBookmark()
          Creates a new root bookmark and saves it in the document catalog.
 Bookmark PDFAssemble.getRootBookmark()
          Returns the 'root' bookmark.
 Bookmark PDFAssemble.createBookmark(Bookmark parent, int pageNum)
          Creates a Bookmark with a GoToPage action, and Add it as a child to the parent Bookmark parameter
 Bookmark PDFAssemble.createBookmark(Bookmark parent, int pageNum, int x, int y, double scale)
          Creates a Bookmark with a GoToPage action that uses x and y coordinates and a zoom scale.
 Bookmark PDFAssemble.createBookmark(Bookmark parent, int pageNum, int zoomMode)
          Creates a Bookmark with a GoToPage action with a zoom mode, and Add it as a child to the parent Bookmark parameter
 

Methods in com.qoppa.pdfAssemble with parameters of type Bookmark
 void PDFAssemble.addGoToPage(Bookmark bookmark, int pageNum)
          Adds a GoToPage action to the Bookmark Parameter.
 void PDFAssemble.addGoToPage(Bookmark bookmark, int pageNum, int x, int y, double scale)
          Adds a GoToPage action to the Bookmark Parameter that uses x and y coordinates and a zoom scale.
 void PDFAssemble.addGoToPage(Bookmark bookmark, int pageNum, int zoomMode)
          Adds a GoToPage action to the Bookmark Parameter with a zoom mode.
 Bookmark PDFAssemble.createBookmark(Bookmark parent, int pageNum)
          Creates a Bookmark with a GoToPage action, and Add it as a child to the parent Bookmark parameter
 Bookmark PDFAssemble.createBookmark(Bookmark parent, int pageNum, int x, int y, double scale)
          Creates a Bookmark with a GoToPage action that uses x and y coordinates and a zoom scale.
 Bookmark PDFAssemble.createBookmark(Bookmark parent, int pageNum, int zoomMode)
          Creates a Bookmark with a GoToPage action with a zoom mode, and Add it as a child to the parent Bookmark parameter
 

Uses of Bookmark in com.qoppa.pdfProcess
 

Methods in com.qoppa.pdfProcess that return Bookmark
 Bookmark PDFDocument.createRootBookmark()
          Creates a new root bookmark and saves it in the document catalog.
 Bookmark PDFDocument.getRootBookmark()
          Returns the 'root' bookmark.