aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pepping <spepping@apache.org>2006-12-20 08:45:54 +0000
committerSimon Pepping <spepping@apache.org>2006-12-20 08:45:54 +0000
commitf5a14450c7f0e4ff9204621deb76c48decd06365 (patch)
treee33d2333a14f8e40f377f1de9fedb416bb0893bf
parent057128e23fa539021ed00d801619d98b7850e7f7 (diff)
downloadxmlgraphics-fop-f5a14450c7f0e4ff9204621deb76c48decd06365.tar.gz
xmlgraphics-fop-f5a14450c7f0e4ff9204621deb76c48decd06365.zip
Remove unused attributes from TableCell. Patch by Richard Wheeldon
<richardw@geoquip-rnd.demon.co.uk>. ASF Bugzilla Bug 41009. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@488966 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/java/org/apache/fop/fo/flow/TableCell.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableCell.java b/src/java/org/apache/fop/fo/flow/TableCell.java
index b5d42135f..a54144b91 100644
--- a/src/java/org/apache/fop/fo/flow/TableCell.java
+++ b/src/java/org/apache/fop/fo/flow/TableCell.java
@@ -67,36 +67,6 @@ public class TableCell extends TableFObj {
private boolean blockItemFound = false;
/**
- * Offset of content rectangle in inline-progression-direction,
- * relative to table.
- */
- protected int startOffset;
-
- /**
- * Offset of content rectangle, in block-progression-direction,
- * relative to the row.
- */
- protected int beforeOffset = 0;
-
- /**
- * Offset of content rectangle, in inline-progression-direction,
- * relative to the column start edge.
- */
- protected int startAdjust = 0;
-
- /**
- * Adjust to theoretical column width to obtain content width
- * relative to the column start edge.
- */
- protected int widthAdjust = 0;
-
- /** For collapsed border style */
- protected int borderHeight = 0;
-
- /** Ypos of cell ??? */
- protected int top;
-
- /**
* @param parent FONode that is the parent of this object
*/
public TableCell(FONode parent) {
@@ -175,15 +145,6 @@ public class TableCell extends TableFObj {
}
/**
- * Set position relative to table (set by body?)
- *
- * @param offset new offset
- */
- public void setStartOffset(int offset) {
- startOffset = offset;
- }
-
- /**
* @return the Common Border, Padding, and Background Properties.
*/
public CommonBorderPaddingBackground getCommonBorderPaddingBackground() {