diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2007-11-05 16:07:45 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2007-11-05 16:07:45 +0000 |
commit | 2a762125322db82658fb650b131f80ed600fc93d (patch) | |
tree | f18aa23be572dc66809b135e958c8fb6faa8fb9f /test/java/org/apache/fop/fo/flow/AbstractTableTestCase.java | |
parent | 9f7240917415e7cb777c1b446bdc8b09cca23237 (diff) | |
download | xmlgraphics-fop-2a762125322db82658fb650b131f80ed600fc93d.tar.gz xmlgraphics-fop-2a762125322db82658fb650b131f80ed600fc93d.zip |
First step towards building row groups at the FO tree stage. The built row groups are currently not used and the TableRowIterator stuff remains unchanged; this allows for more atomic commits.
- introduced RowGroupBuilder hierarchy;
- moved TableRowIterator test cases into fotree, and integrated them in the test suite.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@592058 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/java/org/apache/fop/fo/flow/AbstractTableTestCase.java')
-rw-r--r-- | test/java/org/apache/fop/fo/flow/AbstractTableTestCase.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/java/org/apache/fop/fo/flow/AbstractTableTestCase.java b/test/java/org/apache/fop/fo/flow/AbstractTableTestCase.java index 40f97055a..bbac7d8a3 100644 --- a/test/java/org/apache/fop/fo/flow/AbstractTableTestCase.java +++ b/test/java/org/apache/fop/fo/flow/AbstractTableTestCase.java @@ -19,6 +19,8 @@ package org.apache.fop.fo.flow; +import java.util.Iterator; + import org.apache.fop.apps.FOUserAgent; import org.apache.fop.fo.FOEventHandler; import org.apache.fop.fotreetest.FOTreeUnitTester; @@ -49,4 +51,8 @@ abstract class AbstractTableTestCase extends FOTreeUnitTester { protected TableHandler getTableHandler() { return tableHandler; } + + protected Iterator getTableIterator() { + return tableHandler.getTables().iterator(); + } } |