aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/TableRow.java
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2003-08-12 18:02:46 +0000
committerWilliam Victor Mote <vmote@apache.org>2003-08-12 18:02:46 +0000
commit6b7838777ffd2c2297971728addef851ffc30509 (patch)
tree9885e96b0eaecbad97316ff8be4bfefe8ea3e648 /src/java/org/apache/fop/fo/flow/TableRow.java
parentb6dcb1e72da56b0b55ef41dc97245ce03501cfe9 (diff)
downloadxmlgraphics-fop-6b7838777ffd2c2297971728addef851ffc30509.tar.gz
xmlgraphics-fop-6b7838777ffd2c2297971728addef851ffc30509.zip
move the "common" property classes from layout to fo.properties, renaming them with a "Common" prefix
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196790 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/TableRow.java')
-rw-r--r--src/java/org/apache/fop/fo/flow/TableRow.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableRow.java b/src/java/org/apache/fop/fo/flow/TableRow.java
index 80ef93bdf..42ee9c2e9 100644
--- a/src/java/org/apache/fop/fo/flow/TableRow.java
+++ b/src/java/org/apache/fop/fo/flow/TableRow.java
@@ -61,11 +61,11 @@ import org.apache.fop.fo.FObj;
import org.apache.fop.fo.Property;
import org.apache.fop.fo.properties.Constants;
-import org.apache.fop.layout.AccessibilityProps;
-import org.apache.fop.layout.AuralProps;
-import org.apache.fop.layout.BackgroundProps;
-import org.apache.fop.layout.BorderAndPadding;
-import org.apache.fop.layout.RelativePositionProps;
+import org.apache.fop.fo.properties.CommonAccessibility;
+import org.apache.fop.fo.properties.CommonAural;
+import org.apache.fop.fo.properties.CommonBackground;
+import org.apache.fop.fo.properties.CommonBorderAndPadding;
+import org.apache.fop.fo.properties.CommonRelativePosition;
import org.apache.fop.layoutmgr.table.Row;
/**
@@ -112,21 +112,21 @@ public class TableRow extends FObj {
private void doSetup() {
// Common Accessibility Properties
- AccessibilityProps mAccProps = propMgr.getAccessibilityProps();
+ CommonAccessibility mAccProps = propMgr.getAccessibilityProps();
// this.properties.get("block-progression-dimension");
// Common Aural Properties
- AuralProps mAurProps = propMgr.getAuralProps();
+ CommonAural mAurProps = propMgr.getAuralProps();
// Common Border, Padding, and Background Properties
// only background apply, border apply if border-collapse
// is collapse.
- BorderAndPadding bap = propMgr.getBorderAndPadding();
- BackgroundProps bProps = propMgr.getBackgroundProps();
+ CommonBorderAndPadding bap = propMgr.getBorderAndPadding();
+ CommonBackground bProps = propMgr.getBackgroundProps();
// Common Relative Position Properties
- RelativePositionProps mRelProps = propMgr.getRelativePositionProps();
+ CommonRelativePosition mRelProps = propMgr.getRelativePositionProps();
// this.properties.get("break-before");
// this.properties.get("break-after");