Uses of Class
org.pdfbox.cos.COSDocument

Packages that use COSDocument
org.pdfbox.cos These are the low level objects that make up a PDF document.  
org.pdfbox.encryption These classes deal with encryption algorithms that are used in the PDF Document. 
org.pdfbox.examples The packages in this package will show how to use the PDFBox API. 
org.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document. 
org.pdfbox.pdfwriter This is the persistence layer used to write the PDFBox documents to a stream. 
org.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents. 
org.pdfbox.pdmodel.fdf The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document. 
org.pdfbox.util This package contains utility classes that are used by the PDFBox project. 
 

Uses of COSDocument in org.pdfbox.cos
 

Methods in org.pdfbox.cos with parameters of type COSDocument
 Object ICOSVisitor.visitFromDocument(COSDocument obj)
          Notification of visit to document object.
 

Uses of COSDocument in org.pdfbox.encryption
 

Constructors in org.pdfbox.encryption with parameters of type COSDocument
DocumentEncryption(COSDocument doc)
          Deprecated. Constructor.
 

Uses of COSDocument in org.pdfbox.examples
 

Methods in org.pdfbox.examples with parameters of type COSDocument
 void AbstractExample.close(COSDocument doc)
          Close the document.
 

Uses of COSDocument in org.pdfbox.pdfparser
 

Methods in org.pdfbox.pdfparser that return COSDocument
 COSDocument PDFParser.getDocument()
          This will get the document that was parsed.
 

Methods in org.pdfbox.pdfparser with parameters of type COSDocument
 void BaseParser.setDocument(COSDocument doc)
          Set the document for this stream.
 

Constructors in org.pdfbox.pdfparser with parameters of type COSDocument
PDFObjectStreamParser(COSStream strm, COSDocument doc)
          Constructor.
 

Uses of COSDocument in org.pdfbox.pdfwriter
 

Methods in org.pdfbox.pdfwriter with parameters of type COSDocument
protected  void COSWriter.doWriteBody(COSDocument doc)
          This will write the body of the document.
protected  void COSWriter.doWriteHeader(COSDocument doc)
          This will write the header to the PDF document.
protected  void COSWriter.doWriteTrailer(COSDocument doc)
          This will write the trailer to the PDF document.
protected  void COSWriter.doWriteXRef(COSDocument doc)
          write the x ref section for the pdf file currently, the pdf is reconstructed from the scratch, so we write a single section todo support for incremental writing?
 Object COSWriter.visitFromDocument(COSDocument doc)
          The visit from document method.
 void COSWriter.write(COSDocument doc)
          This will write the pdf document.
 

Uses of COSDocument in org.pdfbox.pdmodel
 

Methods in org.pdfbox.pdmodel that return COSDocument
 COSDocument PDDocument.getDocument()
          This will get the low level document.
 

Constructors in org.pdfbox.pdmodel with parameters of type COSDocument
PDDocument(COSDocument doc)
          Constructor that uses an existing document.
 

Uses of COSDocument in org.pdfbox.pdmodel.fdf
 

Methods in org.pdfbox.pdmodel.fdf that return COSDocument
 COSDocument FDFDocument.getDocument()
          This will get the low level document.
 

Constructors in org.pdfbox.pdmodel.fdf with parameters of type COSDocument
FDFDocument(COSDocument doc)
          Constructor that uses an existing document.
 

Uses of COSDocument in org.pdfbox.util
 

Methods in org.pdfbox.util with parameters of type COSDocument
 String PDFTextStripper.getText(COSDocument doc)
          Deprecated.  
 void PDFTextStripper.writeText(COSDocument doc, Writer outputStream)
          Deprecated.