Uses of Interface
org.extex.backend.documentWriter.DocumentWriter

Packages that use DocumentWriter
org.extex.backend This package contains the backends of ExTeX
org.extex.backend.documentWriter This package contains the backends of ExTeX which are responsible for writing the constructed pages to an appropriate file. 
org.extex.backend.documentWriter.dump This package contains backends of ExTeX which just dump the information in a readable format to the output file. 
org.extex.backend.documentWriter.dvi This package contains the definitions for a DocumentWriter for dvi-Files. 
org.extex.backend.documentWriter.itextpdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.pdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.postscript This package contains a DocumentWriter to produce PostScript and Encapsulated PostScript. 
org.extex.backend.documentWriter.rtf This package contains a DocumentWriter to produce RTF files. 
org.extex.backend.documentWriter.svg This package contains a backend of ExTeX which dumps the information in a SVG format. 
org.extex.backend.documentWriter.text This package contains a backend of ExTeX which dumps the information as text in a readable format to the output file (very simple). 
org.extex.backend.documentWriter.xml This package contains a backend of ExTeX which dumps the information in a XML format. 
 

Uses of DocumentWriter in org.extex.backend
 

Methods in org.extex.backend that return DocumentWriter
 DocumentWriter BackendDriverImpl.getDocumentWriter()
          Getter for the document writer.
 DocumentWriter BackendDriver.getDocumentWriter()
          Getter for the document writer.
 

Uses of DocumentWriter in org.extex.backend.documentWriter
 

Methods in org.extex.backend.documentWriter that return DocumentWriter
 DocumentWriter DocumentWriterFactory.newInstance(java.lang.String type, OutputStreamFactory outFactory)
          Provide a new instance of a document writer.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.dump
 

Classes in org.extex.backend.documentWriter.dump that implement DocumentWriter
 class DumpDocumentWriter
          This is an implementation of a document writer which can act both as sample and as tool for testing.
 class MultiDumpDocumentWriter
          This is an implementation of a document writer which puts of each page into a new output stream.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.dvi
 

Classes in org.extex.backend.documentWriter.dvi that implement DocumentWriter
 class DviDocumentWriter
          This is a implementation of a dvi document writer.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.itextpdf
 

Classes in org.extex.backend.documentWriter.itextpdf that implement DocumentWriter
 class PdfDocumentWriter
          Implementation of a pdf document writer with iText.
 class TwoPassDocumentWriter
          Implementation of a pdf document writer with iText.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.pdf
 

Classes in org.extex.backend.documentWriter.pdf that implement DocumentWriter
 class PdfSinglePageDocumentWriter
          Implementation of a pdf document writer.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.postscript
 

Classes in org.extex.backend.documentWriter.postscript that implement DocumentWriter
 class AbstractPostscriptWriter
          This is the abstract base class for document writers producing PostScript code.
 class EpsWriter
          This document writer produces Encapsulated Postscript documents.
 class PsWriter
          This document writer produces multi-page PostScript documents.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.rtf
 

Classes in org.extex.backend.documentWriter.rtf that implement DocumentWriter
 class RtfDocumentWriter
          This class provides a base implementation of a RTF document writer.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.svg
 

Classes in org.extex.backend.documentWriter.svg that implement DocumentWriter
 class SVGDocumentWriter
          This is a SVG implementation of a document writer.
 

Uses of DocumentWriter in org.extex.backend.documentWriter.text
 

Classes in org.extex.backend.documentWriter.text that implement DocumentWriter
 class TextDocumentWriter
          This is a text dummy implementation of a document writer (very simple).
 

Uses of DocumentWriter in org.extex.backend.documentWriter.xml
 

Classes in org.extex.backend.documentWriter.xml that implement DocumentWriter
 class XMLDocumentWriter
          This is a xml implementation of a document writer.