diff options
author | Glen Mazza <gmazza@apache.org> | 2004-08-25 05:03:08 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-08-25 05:03:08 +0000 |
commit | bca058d18435025bf06fe5c828be82854f1f57b9 (patch) | |
tree | 3888deedcbb056a017a93b745d83b743b599d55d /src/java/org/apache/fop/fo/flow/InlineContainer.java | |
parent | eda42c18ad7dc3f9adef28693bfe0925d0af4e3d (diff) | |
download | xmlgraphics-fop-bca058d18435025bf06fe5c828be82854f1f57b9.tar.gz xmlgraphics-fop-bca058d18435025bf06fe5c828be82854f1f57b9.zip |
1. Implemented validateChildNode() for fo:simple-page-master. This may cause some stress with the user community--as any declared fo:region-xxxx children must follow a specific ordering.
2. Modified several of our sample and test FO files to be compliant with the XSL spec with respect to the change above.
3. @todo's added to FO's still missing validateChildNode()
4. New FONode missingPropertyError() method created, for the major cases where missing properties should halt processing.
5. Various cleanup in our layout-master-set and region classes, including the removal of error checks that are no longer needed due to validateChildNode() being implemented.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197889 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/InlineContainer.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/InlineContainer.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/flow/InlineContainer.java b/src/java/org/apache/fop/fo/flow/InlineContainer.java index c5251f63b..4e50556cd 100644 --- a/src/java/org/apache/fop/fo/flow/InlineContainer.java +++ b/src/java/org/apache/fop/fo/flow/InlineContainer.java @@ -33,8 +33,8 @@ import org.apache.fop.fo.FONode; import org.apache.fop.fo.FObj; /** - * Class modelling the fo:inline-container object. See Sec. 6.6.8 of the XSL-FO - * Standard. + * Class modelling the fo:inline-container object. + * @todo implement validateChildNode() */ public class InlineContainer extends FObj { |