[adelmelle]

Author: adelmelle
Date: Sat Sep 17 16:59:25 2005
New Revision: 289865

URL: http://svn.apache.org/viewcvs?rev=289865&view=rev
Log:
Implementation for initial values of the column-number property

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/TableCell.java
URL: 
http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/TableCell.java?rev=289865&r1=289864&r2=289865&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/TableCell.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/TableCell.java Sat 
Sep 17 16:59:25 2005
...
+        if( pList.getExplicit(PR_COLUMN_NUMBER) != null ) {
+            ((TableFObj) parent).setCurrentColumnIndex(
+                    
pList.getExplicit(PR_COLUMN_NUMBER).getNumeric().getValue());
+        }

Why is explit specified values different? In all other cases in FOP, the fo object only needs the computed values.

Perhaps it is needed here for table objects, but I find it very strange.

regards,
finn

Reply via email to