aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/TableCell.java
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2001-08-06 09:12:59 +0000
committerKeiron Liddle <keiron@apache.org>2001-08-06 09:12:59 +0000
commitc928a8eadc5d7e48771fd91f56abfdb889fe2f61 (patch)
tree7d8e86ef766807e49de04591ccce869ace9ef52e /src/org/apache/fop/fo/flow/TableCell.java
parent87849d314529a8d87a310bc4120f72446c5cc17a (diff)
downloadxmlgraphics-fop-c928a8eadc5d7e48771fd91f56abfdb889fe2f61.tar.gz
xmlgraphics-fop-c928a8eadc5d7e48771fd91f56abfdb889fe2f61.zip
gets all properties specified on each element
adds "Unknown" element for unknown elements or other namespaces need to get a consistent and easy way to use the property values git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/flow/TableCell.java')
-rw-r--r--src/org/apache/fop/fo/flow/TableCell.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/org/apache/fop/fo/flow/TableCell.java b/src/org/apache/fop/fo/flow/TableCell.java
index eeaa99cf6..24d5d12d4 100644
--- a/src/org/apache/fop/fo/flow/TableCell.java
+++ b/src/org/apache/fop/fo/flow/TableCell.java
@@ -122,6 +122,36 @@ public class TableCell extends FObj {
public void doSetup() // throws FOPException
{
+ // Common Accessibility Properties
+ AccessibilityProps mAccProps = propMgr.getAccessibilityProps();
+
+ // Common Aural Properties
+ AuralProps mAurProps = propMgr.getAuralProps();
+
+ // Common Border, Padding, and Background Properties
+ BorderAndPadding bap = propMgr.getBorderAndPadding();
+ BackgroundProps bProps = propMgr.getBackgroundProps();
+
+ // Common Relative Position Properties
+ RelativePositionProps mRelProps = propMgr.getRelativePositionProps();
+
+ // this.properties.get("border-after-precedence");
+ // this.properties.get("border-before-precendence");
+ // this.properties.get("border-end-precendence");
+ // this.properties.get("border-start-precendence");
+ // this.properties.get("block-progression-dimension");
+ // this.properties.get("column-number");
+ // this.properties.get("display-align");
+ // this.properties.get("relative-align");
+ // this.properties.get("empty-cells");
+ // this.properties.get("ends-row");
+ // this.properties.get("height");
+ // this.properties.get("id");
+ // this.properties.get("number-columns-spanned");
+ // this.properties.get("number-rows-spanned");
+ // this.properties.get("starts-row");
+ // this.properties.get("width");
+
this.iColNumber =
properties.get("column-number").getNumber().intValue();
if (iColNumber < 0) {