Uses of Class
com.qoppa.pdf.Layer

Packages that use Layer
com.qoppa.pdf General classes used by different objects throughout the library. 
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. 
 

Uses of Layer in com.qoppa.pdf
 

Methods in com.qoppa.pdf with parameters of type Layer
 void LayerListener.stateChanged(Layer l, boolean visible)
          This method gets called anytime a layer's visibility state has changed.
 

Uses of Layer in com.qoppa.pdf.annotations
 

Methods in com.qoppa.pdf.annotations with parameters of type Layer
 void Annotation.setLayer(Layer layer)
          Sets the layer that this annotation belongs to.
 

Uses of Layer in com.qoppa.pdf.dom
 

Methods in com.qoppa.pdf.dom that return Layer
 Layer IPDFDocument.getLayer(int layerIndex)
          Returns a particular PDF layer given its index.
 

Uses of Layer in com.qoppa.pdfProcess
 

Methods in com.qoppa.pdfProcess that return Layer
 Layer PDFDocument.addLayer(String name, int initialState)
          Creates and returns a PDF layer (Optional Content Group).
 Layer PDFDocument.addLayer(String name, int initialState, boolean showInList)
          Creates and returns a PDF layer (Optional Content Group).
 Layer PDFDocument.getLayer(int layerIndex)
          Returns a particular PDF layer given its index.
 

Methods in com.qoppa.pdfProcess with parameters of type Layer
 void PDFPage.appendPageContent(PDFPage srcPage, double x, double y, double scaleX, double scaleY, Layer layer)
          Adds the content of another page to this page.
 void PDFPage.copyAnnotations(PDFPage srcPage, Layer layer)
          Use this method to copy annotations onto this page, from this or other documents.
 Graphics2D PDFPage.createGraphics(Layer layer)
          Creates a graphics object that encapsulates a layer in a PDF document.
 void PDFPage.prependPageContent(PDFPage srcPage, double x, double y, double scaleX, double scaleY, Layer layer)
          Prepend the contents of another page to this page.