Uses of Interface
org.extex.typesetter.type.page.Page

Packages that use Page
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.dvix This package contains a DocumentWriter to produce 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.postscript.converter This package contains converters for the a PostScript DocumentWriter. 
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. 
org.extex.backend.pageFilter This package contains the page filters of ExTeX
org.extex.backend.pageFilter.selector This package contains the page selector and supporting classes. 
org.extex.engine.typesetter.page This package contains the backend support for pages of the core engine of ExTeX
org.extex.typesetter.output   
org.extex.typesetter.tex   
org.extex.typesetter.type.page This package contains type definitions for the pages and supporting classes. 
 

Uses of Page in org.extex.backend
 

Methods in org.extex.backend with parameters of type Page
 int BackendDriverImpl.shipout(Page page)
          This is the entry point for the document writer.
 int BackendDriver.shipout(Page page)
          This is the entry point for the document writer.
 

Uses of Page in org.extex.backend.documentWriter
 

Methods in org.extex.backend.documentWriter with parameters of type Page
 int DocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

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

Methods in org.extex.backend.documentWriter.dump with parameters of type Page
 int MultiDumpDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 int DumpDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

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

Methods in org.extex.backend.documentWriter.dvi with parameters of type Page
 int DviDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

Uses of Page in org.extex.backend.documentWriter.dvix
 

Methods in org.extex.backend.documentWriter.dvix with parameters of type Page
 int DviDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

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

Methods in org.extex.backend.documentWriter.itextpdf with parameters of type Page
 int TwoPassDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 int PdfDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

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

Methods in org.extex.backend.documentWriter.pdf with parameters of type Page
 int PdfDocumentWriter.shipout(Page p)
          This is the entry point for the document writer.
 int PdfSinglePageDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

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

Methods in org.extex.backend.documentWriter.postscript with parameters of type Page
 int EpsWriter.shipout(Page page)
          This is the entry point for the document writer.
 int PsWriter.shipout(Page p)
          This is the entry point for the document writer.
 

Uses of Page in org.extex.backend.documentWriter.postscript.converter
 

Methods in org.extex.backend.documentWriter.postscript.converter with parameters of type Page
 byte[] PsBasicConverter.toPostScript(Page page)
          Translate nodes into PostScript code.
 byte[] PsConverter.toPostScript(Page page)
          Translate nodes into PostScript code.
 byte[] PsBoxConverter.toPostScript(Page page)
          Translate nodes into PostScript code.
 

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

Methods in org.extex.backend.documentWriter.rtf with parameters of type Page
 int RtfDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

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

Methods in org.extex.backend.documentWriter.svg with parameters of type Page
 int SVGDocumentWriter.shipout(Page page)
          This is the entry point for the document writer.
 

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

Methods in org.extex.backend.documentWriter.text with parameters of type Page
 int TextDocumentWriter.shipout(Page page)
           
 

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

Methods in org.extex.backend.documentWriter.xml with parameters of type Page
 int XMLDocumentWriter.shipout(Page page)
           
 

Uses of Page in org.extex.backend.pageFilter
 

Methods in org.extex.backend.pageFilter with parameters of type Page
 void PageReverser.shipout(Page page)
          This is the entry point for the document writer.
 void PagePipe.shipout(Page page)
          This is the entry point for the document writer.
 

Uses of Page in org.extex.backend.pageFilter.selector
 

Methods in org.extex.backend.pageFilter.selector with parameters of type Page
 void PageSelector.shipout(Page page)
          This is the entry point for the document writer.
 

Uses of Page in org.extex.engine.typesetter.page
 

Classes in org.extex.engine.typesetter.page that implement Page
 class PageImpl
          This class provides a transport object for pages.
 

Methods in org.extex.engine.typesetter.page that return Page
 Page PageFactoryImpl.newInstance(NodeList nodes, PageContext pageContext, Typesetter typesetter)
          Get a new instance of a page.
 

Methods in org.extex.engine.typesetter.page with parameters of type Page
 void PageFactoryNodeVisitor.reset(Page page, Context context, Typesetter typesetter)
          Reset the internal to start with a new page.
 

Uses of Page in org.extex.typesetter.output
 

Methods in org.extex.typesetter.output with parameters of type Page
 void OutputRoutine.output(Page page, BackendDriver backend)
          The output function is invoked to process a vertical list and put the material on the page.
 

Uses of Page in org.extex.typesetter.tex
 

Methods in org.extex.typesetter.tex with parameters of type Page
 void TeXOutputRoutine.output(Page page, BackendDriver backend)
          The output function is invoked to process a vertical list and put the material on the page.
 

Uses of Page in org.extex.typesetter.type.page
 

Methods in org.extex.typesetter.type.page that return Page
 Page PageFactory.newInstance(NodeList nodes, PageContext context, Typesetter typesetter)
          Get a new instance of a page.