From: William Victor Mote Date: Mon, 21 Apr 2003 00:12:42 +0000 (+0000) Subject: Clean up formatting of classes & methods. X-Git-Tag: Root_Temp_KnuthStylePageBreaking~1601 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=38e4ae2702e15af8a928d79695a9da5ea2711683;p=xmlgraphics-fop.git Clean up formatting of classes & methods. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196281 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/dev/implement.xml b/src/documentation/content/xdocs/dev/implement.xml index c65b1b99d..8d68edb85 100644 --- a/src/documentation/content/xdocs/dev/implement.xml +++ b/src/documentation/content/xdocs/dev/implement.xml @@ -33,19 +33,20 @@ The SAX events that the parser creates are handled by fo.FOTreeBuilder, which uses startElement(), endElement(), and characters() methods to build the FO Tree. - fo.FOTreeBuilder.endElement() runs the end() method for each node as it is created. The fo.pagination.PageSequence class overrides this end() method to run apps.LayoutHandler.endPageSequence(), which in turn runs fo.pagination.PageSequence.format(). - the end of a PageSequence element causes the PageSequence object to be passed to apps.StreamRenderer.render, which in turn runs fo.pagination.PageSequence.format. + fo.FOTreeBuilder.endElement() runs the end() method for each node as it is created. The fo.pagination.PageSequence class overrides this end() method to run apps.LayoutHandler.endPageSequence(), which in turn runs fo.pagination.PageSequence.format(). + the end of a PageSequence element causes the PageSequence object to be passed to apps.StreamRenderer.render(), which in turn runs fo.pagination.PageSequence.format(). - fo.pagination.PageSequence.format() creates a layoutmgr.PageLayoutManager, passing the AreaTree and PageSequence objects to it, then calls its run() method. - fo.pagination.PageSequence.addFlow() programatically adds a Flow object to the page sequence. + fo.pagination.PageSequence.format() creates a layoutmgr.PageLayoutManager, passing the AreaTree and PageSequence objects to it, then calls its run() method. + fo.pagination.PageSequence.addFlow() programatically adds a Flow object to the page sequence. . - fo.pagination.PageSequence.makePage() creates a BodyArea and passes it to fo.Flow.layout + fo.pagination.PageSequence.makePage() creates a BodyArea and passes it to fo.Flow.layout - the layout process is then driven from fo.pagination.PageSequence.format. + . + the layout process is then driven from fo.pagination.PageSequence.format().