pbwest 2002/07/03 18:57:17 Modified: src/org/apache/fop/datatypes Tag: FOP_0-20-0_Alt-Design MappedNumeric.java Log: Method name change in FOTree: getMappedNumValue to getMappedNumArrayValue Revision Changes Path No revision No revision 1.1.2.2 +7 -7 xml-fop/src/org/apache/fop/datatypes/Attic/MappedNumeric.java Index: MappedNumeric.java =================================================================== RCS file: /home/cvs/xml-fop/src/org/apache/fop/datatypes/Attic/MappedNumeric.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -r1.1.2.1 -r1.1.2.2 --- MappedNumeric.java 30 Jun 2002 16:49:26 -0000 1.1.2.1 +++ MappedNumeric.java 4 Jul 2002 01:57:17 -0000 1.1.2.2 @@ -36,8 +36,8 @@ * @param property the <tt>int</tt> index of the property on which * this value is being defined. * @param enumText the <tt>String</tt> containing the enumeration text. + * @param foTree the <tt>FOTree</tt> being built * An <i>NCName</i>. - * @param foTree the <tt>FOTree</tt> which is being built. * @exception PropertyException */ public MappedNumeric(int property, String enumText, FOTree foTree) @@ -46,15 +46,15 @@ // Set property index in AbstractPropertyValue // and enumValue enum constant in EnumType super(property, enumText); - mappedNum = foTree.getMappedNumValue(property, enumValue); + mappedNum = foTree.getMappedNumArrayValue(property, enumValue); } /** * @param propertyName the <tt>String</tt> name of the property on which * this value is being defined. * @param enumText the <tt>String</tt> containing the enumeration text. + * @param foTree the <tt>FOTree</tt> being built * An <i>NCName</i>. - * @param foTree the <tt>FOTree</tt> which is being built. * @exception PropertyException */ public MappedNumeric(String propertyName, String enumText, FOTree foTree) @@ -63,7 +63,7 @@ // Set property index in AbstractPropertyValue // and enumValue enum constant in EnumType super(propertyName, enumText); - mappedNum = foTree.getMappedNumValue(property, enumValue); + mappedNum = foTree.getMappedNumArrayValue(property, enumValue); } /**
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]