From: William Victor Mote Date: Tue, 22 Apr 2003 02:29:16 +0000 (+0000) Subject: Integrate the content from the two documents a bit. X-Git-Tag: Root_Temp_KnuthStylePageBreaking~1580 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4932945181212f8860cb19ce997a7f0cf680aa70;p=xmlgraphics-fop.git Integrate the content from the two documents a bit. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196302 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/design/areas.xml b/src/documentation/content/xdocs/design/areas.xml index 70039ea5b..e923eb770 100644 --- a/src/documentation/content/xdocs/design/areas.xml +++ b/src/documentation/content/xdocs/design/areas.xml @@ -12,28 +12,17 @@ -

-The code to implement the area tree matches the areas -defined in the specification. This makes it easier to understand and -correspond with the specification. +

The Area Tree is an internal representation of the result document, representing pages and their contents. +To make the concepts clearer and easier to understand, the code to implement the area tree matches the areas defined in the XSL-FO specification.

The area tree is created by the layout managers once the layout is decided for a page. Once a completed page is finished it can then be added to the -area tree. The area tree model can then handle the new page. The data in +area tree. From that point forward, the area tree model can then handle the new page. The data in the area tree must be minimal and independant. This means that the data uses less memory and can be serialized to an output stream if needed.

-

The Area Tree is an internal representation of the result document. This -is a set of java classes that can put together a set of objects that -represent the pages and their contents.

-

This information is created by the layout managers and is rendered to the -output using a renderer.

-

The Area Tree follows the description of the area tree in the XSL:FO -specification.

-

The Area Tree consists of a set of pages, the actual implemenation places -these in -a set of page sequences.

+

The Area Tree consists of a set of pages, which the actual implemenation places in a set of page sequences.

Structure