Uses of Class
com.lowagie.text.Document

Packages that use Document
com.lowagie.text   
com.lowagie.text.html   
com.lowagie.text.pdf   
com.lowagie.text.pdf.events   
com.lowagie.text.rtf   
com.lowagie.text.xml   
 

Uses of Document in com.lowagie.text
 

Fields in com.lowagie.text declared as Document
protected  Document DocWriter.document
          This is the document that has to be written.
 

Constructors in com.lowagie.text with parameters of type Document
DocWriter(Document document, OutputStream os)
          Constructs a DocWriter.
 

Uses of Document in com.lowagie.text.html
 

Methods in com.lowagie.text.html with parameters of type Document
static HtmlWriter HtmlWriter.getInstance(Document document, OutputStream os)
          Gets an instance of the HtmlWriter.
 

Constructors in com.lowagie.text.html with parameters of type Document
HtmlWriter(Document doc, OutputStream os)
          Constructs a HtmlWriter.
 

Uses of Document in com.lowagie.text.pdf
 

Methods in com.lowagie.text.pdf with parameters of type Document
static PdfWriter PdfWriter.getInstance(Document document, OutputStream os)
          Gets an instance of the PdfWriter.
static PdfWriter PdfWriter.getInstance(Document document, OutputStream os, DocListener listener)
          Gets an instance of the PdfWriter.
 void PdfPageEvent.onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
          Called when a Chapter is written.
 void PdfPageEventHelper.onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
          Called when a Chapter is written.
 void PdfPageEvent.onChapterEnd(PdfWriter writer, Document document, float paragraphPosition)
          Called when the end of a Chapter is reached.
 void PdfPageEventHelper.onChapterEnd(PdfWriter writer, Document document, float position)
          Called when the end of a Chapter is reached.
 void PdfPageEvent.onCloseDocument(PdfWriter writer, Document document)
          Called when the document is closed.
 void PdfPageEventHelper.onCloseDocument(PdfWriter writer, Document document)
          Called when the document is closed.
 void PdfPageEvent.onEndPage(PdfWriter writer, Document document)
          Called when a page is finished, just before being written to the document.
 void PdfPageEventHelper.onEndPage(PdfWriter writer, Document document)
          Called when a page is finished, just before being written to the document.
 void PdfPageEvent.onGenericTag(PdfWriter writer, Document document, Rectangle rect, String text)
          Called when a Chunk with a generic tag is written.
 void PdfPageEventHelper.onGenericTag(PdfWriter writer, Document document, Rectangle rect, String text)
          Called when a Chunk with a generic tag is written.
 void PdfPageEvent.onOpenDocument(PdfWriter writer, Document document)
          Called when the document is opened.
 void PdfPageEventHelper.onOpenDocument(PdfWriter writer, Document document)
          Called when the document is opened.
 void PdfPageEvent.onParagraph(PdfWriter writer, Document document, float paragraphPosition)
          Called when a Paragraph is written.
 void PdfPageEventHelper.onParagraph(PdfWriter writer, Document document, float paragraphPosition)
          Called when a Paragraph is written.
 void PdfPageEvent.onParagraphEnd(PdfWriter writer, Document document, float paragraphPosition)
          Called when a Paragraph is written.
 void PdfPageEventHelper.onParagraphEnd(PdfWriter writer, Document document, float paragraphPosition)
          Called when a Paragraph is written.
 void PdfPageEvent.onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
          Called when a Section is written.
 void PdfPageEventHelper.onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
          Called when a Section is written.
 void PdfPageEvent.onSectionEnd(PdfWriter writer, Document document, float paragraphPosition)
          Called when the end of a Section is reached.
 void PdfPageEventHelper.onSectionEnd(PdfWriter writer, Document document, float position)
          Called when the end of a Section is reached.
 void PdfPageEvent.onStartPage(PdfWriter writer, Document document)
          Called when a page is initialized.
 void PdfPageEventHelper.onStartPage(PdfWriter writer, Document document)
          Called when a page is initialized.
 

Constructors in com.lowagie.text.pdf with parameters of type Document
PdfCopy(Document document, OutputStream os)
          Constructor
 

Uses of Document in com.lowagie.text.pdf.events
 

Methods in com.lowagie.text.pdf.events with parameters of type Document
 void PdfPageEventForwarder.onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
          Called when a Chapter is written.
 void PdfPageEventForwarder.onChapterEnd(PdfWriter writer, Document document, float position)
          Called when the end of a Chapter is reached.
 void PdfPageEventForwarder.onCloseDocument(PdfWriter writer, Document document)
          Called when the document is closed.
 void PdfPageEventForwarder.onEndPage(PdfWriter writer, Document document)
          Called when a page is finished, just before being written to the document.
 void FieldPositioningEvents.onGenericTag(PdfWriter writer, Document document, Rectangle rect, String text)
           
 void IndexEvents.onGenericTag(PdfWriter writer, Document document, Rectangle rect, String text)
          All the text that is passed to this event, gets registered in the indexentry.
 void PdfPageEventForwarder.onGenericTag(PdfWriter writer, Document document, Rectangle rect, String text)
          Called when a Chunk with a generic tag is written.
 void PdfPageEventForwarder.onOpenDocument(PdfWriter writer, Document document)
          Called when the document is opened.
 void PdfPageEventForwarder.onParagraph(PdfWriter writer, Document document, float paragraphPosition)
          Called when a Paragraph is written.
 void PdfPageEventForwarder.onParagraphEnd(PdfWriter writer, Document document, float paragraphPosition)
          Called when a Paragraph is written.
 void PdfPageEventForwarder.onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
          Called when a Section is written.
 void PdfPageEventForwarder.onSectionEnd(PdfWriter writer, Document document, float position)
          Called when the end of a Section is reached.
 void PdfPageEventForwarder.onStartPage(PdfWriter writer, Document document)
          Called when a page is initialized.
 

Uses of Document in com.lowagie.text.rtf
 

Methods in com.lowagie.text.rtf with parameters of type Document
static RtfWriter RtfWriter.getInstance(Document document, OutputStream os)
          Deprecated. Gets an instance of the RtfWriter.
static RtfWriter2 RtfWriter2.getInstance(Document doc, OutputStream os)
          Static method to generate RtfWriters
 

Constructors in com.lowagie.text.rtf with parameters of type Document
RtfWriter(Document doc, OutputStream os)
          Deprecated. Constructs a RtfWriter.
RtfWriter2(Document doc, OutputStream os)
          Constructs a new RtfWriter that listens to the specified Document and writes its output to the OutputStream.
 

Uses of Document in com.lowagie.text.xml
 

Methods in com.lowagie.text.xml with parameters of type Document
protected  void XmlToHtml.addWriter(Document doc, OutputStream out)
          Add a DocWriter for the specified Document and OutputStream.
protected  void XmlToPdf.addWriter(Document doc, OutputStream out)
          Add a DocWriter for the specified Document and OutputStream.
protected  void XmlToRtf.addWriter(Document doc, OutputStream out)
          Add a DocWriter for the specified Document and OutputStream.
protected abstract  void XmlToXXX.addWriter(Document doc, OutputStream out)
          Add a DocWriter for the specified Document and OutputStream.
static XmlWriter XmlWriter.getInstance(Document document, OutputStream os)
          Gets an instance of the XmlWriter.
static XmlWriter XmlWriter.getInstance(Document document, OutputStream os, String dtd)
          Gets an instance of the XmlWriter.
 

Constructors in com.lowagie.text.xml with parameters of type Document
XmlWriter(Document doc, OutputStream os)
          Constructs an XmlWriter.
XmlWriter(Document doc, OutputStream os, String dtd)
          Constructs an XmlWriter.
 



Copyright © 2006-2007 EGIZ - E-Government Innovationszentrum. All Rights Reserved.