Index: TableColumn.java
===================================================================
RCS file: /home/cvspublic/xml-fop/src/java/org/apache/fop/fo/flow/TableColumn.java,v
retrieving revision 1.7
diff -w -u -r1.7 TableColumn.java
--- TableColumn.java	26 Aug 2003 19:51:20 -0000	1.7
+++ TableColumn.java	11 Sep 2003 12:58:17 -0000
@@ -50,7 +50,11 @@
  */
 package org.apache.fop.fo.flow;
 
+// XML
+import org.xml.sax.Attributes;
+
 // FOP
+import org.apache.fop.apps.FOPException;
 import org.apache.fop.datatypes.ColorType;
 import org.apache.fop.datatypes.Length;
 import org.apache.fop.fo.FONode;
@@ -168,5 +172,20 @@
         fotv.serveVisitor(this);
     }
 
+    /**
+     * Overriden from FObj.
+     * @param attlist Collection of attributes passed to us from the parser.
+     * @throws FOPException for FO errors
+     */
+    public void handleAttrs(Attributes attlist) throws FOPException {
+        super.handleAttrs(attlist);
+        doSetup();    // init some basic property values
+        
+        getFOTreeControl().getFOInputHandler().startColumn(this);
+    }
+
+    protected void end() {
+        getFOTreeControl().getFOInputHandler().endColumn(this);
+    }
 }
 
