gmazza 2004/05/25 22:09:00 Modified: src/java/org/apache/fop/fo PropertyManager.java src/java/org/apache/fop/layoutmgr BlockContainerLayoutManager.java Log: Removed getPropertyList() method from PropertyManager, as that method is already available on the FObj (which owns both the PropertyList and the PropertyManager.) Revision Changes Path 1.27 +0 -8 xml-fop/src/java/org/apache/fop/fo/PropertyManager.java Index: PropertyManager.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/PropertyManager.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- PropertyManager.java 23 May 2004 17:00:00 -0000 1.26 +++ PropertyManager.java 26 May 2004 05:08:59 -0000 1.27 @@ -70,14 +70,6 @@ } /** - * Returns the property list that is used for lookup. - * @return the property list - */ - public PropertyList getPropertyList() { - return propertyList; - } - - /** * Sets the Document object telling the property manager which fonts are * available. * @param foTreeControl foTreeControl implementation containing font 1.20 +2 -2 xml-fop/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java Index: BlockContainerLayoutManager.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- BlockContainerLayoutManager.java 26 May 2004 04:22:39 -0000 1.19 +++ BlockContainerLayoutManager.java 26 May 2004 05:09:00 -0000 1.20 @@ -85,9 +85,9 @@ marginProps = propManager.getMarginProps(); borderProps = propManager.getBorderAndPadding(); - height = propManager.getPropertyList().get( + height = fobj.getPropertyList().get( PR_BLOCK_PROGRESSION_DIMENSION | CP_OPTIMUM).getLength(); - width = propManager.getPropertyList().get( + width = fobj.getPropertyList().get( PR_INLINE_PROGRESSION_DIMENSION | CP_OPTIMUM).getLength(); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]