aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/BlockContainer.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/BlockContainer.java')
-rw-r--r--src/java/org/apache/fop/fo/flow/BlockContainer.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/java/org/apache/fop/fo/flow/BlockContainer.java b/src/java/org/apache/fop/fo/flow/BlockContainer.java
index df1a8e884..643d7577b 100644
--- a/src/java/org/apache/fop/fo/flow/BlockContainer.java
+++ b/src/java/org/apache/fop/fo/flow/BlockContainer.java
@@ -22,7 +22,6 @@ package org.apache.fop.fo.flow;
import java.util.List;
// FOP
-import org.apache.fop.datatypes.ColorType;
import org.apache.fop.datatypes.Length;
import org.apache.fop.datatypes.Numeric;
import org.apache.fop.fo.FONode;
@@ -35,7 +34,6 @@ import org.apache.fop.fo.properties.KeepProperty;
import org.apache.fop.fo.properties.LengthRangeProperty;
import org.apache.fop.layoutmgr.BlockContainerLayoutManager;
-import org.xml.sax.Attributes;
import org.xml.sax.SAXParseException;
/**
@@ -67,17 +65,6 @@ public class BlockContainer extends FObj {
// private ToBeImplementedProperty zIndex;
// End of property values
- private ColorType backgroundColor;
- private int position;
-
- private int top;
- private int bottom;
- private int left;
- private int right;
- private int _width;
- private int _height;
-
-
/**
* @param parent FONode that is the parent of this object
*/
@@ -121,20 +108,6 @@ public class BlockContainer extends FObj {
}
/**
- * @see org.apache.fop.fo.FObj#addProperties
- */
- protected void addProperties(Attributes attlist) throws SAXParseException {
- super.addProperties(attlist);
- this.span = getPropEnum(PR_SPAN);
- this.backgroundColor =
- this.propertyList.get(PR_BACKGROUND_COLOR).getColorType();
-
- this._width = getPropLength(PR_WIDTH);
- this._height = getPropLength(PR_HEIGHT);
- getFOEventHandler().startBlockContainer(this);
- }
-
- /**
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {