pbwest 2002/08/19 09:20:55
Modified: src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design
PropertyConsts.java
Log:
Renamed verifyParsing to refineParsing
Revision Changes Path
No revision
No revision
1.1.2.6 +14 -14 xml-fop/src/org/apache/fop/fo/Attic/PropertyConsts.java
Index: PropertyConsts.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/Attic/PropertyConsts.java,v
retrieving revision 1.1.2.5
retrieving revision 1.1.2.6
diff -u -r1.1.2.5 -r1.1.2.6
--- PropertyConsts.java 9 Jul 2002 06:47:25 -0000 1.1.2.5
+++ PropertyConsts.java 19 Aug 2002 16:20:54 -0000 1.1.2.6
@@ -427,20 +427,20 @@
/**
* An array of <tt>Method</tt> objects. This array holds, for each
* property, the <tt>method</tt> object corresponding to the
- * <em>verifyParsing</em> method of the property's class.<br/>
- * <em>verifyParsing</em> methods defined in individual properties
+ * <em>refineParsing</em> method of the property's class.<br/>
+ * <em>refineParsing</em> methods defined in individual properties
* shadow the method in the <em>Properties</em> class.
*/
- private static final Method[] verifyparsingmethods;
+ private static final Method[] refineparsingmethods;
/**
- * An unmodifiable List of the property <i>verifyParsing</i> methods.
- * This random access list is derived from <i>verifyparsingmethods</i>,
+ * An unmodifiable List of the property <i>refineParsing</i> methods.
+ * This random access list is derived from <i>refineparsingmethods</i>,
* above.
* It can be indexed by the property name constants defined in
* the PropNames class.
*/
- public static final List verifyParsingMethods;
+ public static final List refineParsingMethods;
/**
* A <tt>HashMap</tt> of <tt>Method</tt> objects. It contains the
@@ -469,7 +469,7 @@
traitMappings = new int[PropNames.LAST_PROPERTY_INDEX + 1];
datatypes = new int[PropNames.LAST_PROPERTY_INDEX + 1];
classes = new Class[PropNames.LAST_PROPERTY_INDEX + 1];
- verifyparsingmethods = new Method[PropNames.LAST_PROPERTY_INDEX + 1];
+ refineparsingmethods = new Method[PropNames.LAST_PROPERTY_INDEX + 1];
mappednummethods = new HashMap();
for (int i = 0; i <= PropNames.LAST_PROPERTY_INDEX; i++) {
@@ -537,9 +537,9 @@
traitMappings[i] =
classes[i].getField("traitMapping").getInt(null);
datatypes[i] = classes[i].getField("dataTypes").getInt(null);
- verifyparsingmethods[i] =
+ refineparsingmethods[i] =
classes[i].getMethod
- ("verifyParsing", new Class[]
+ ("refineParsing", new Class[]
{org.apache.fop.fo.FOTree.class,
PropertyValue.class});
if ((datatypes[i] & Properties.MAPPED_NUMERIC) != 0)
@@ -571,8 +571,8 @@
(Arrays.asList(classes));
inherited = new ROIntArray(inherit);
dataTypes = new ROIntArray(datatypes);
- verifyParsingMethods = Collections.unmodifiableList
- (Arrays.asList(verifyparsingmethods));
+ refineParsingMethods = Collections.unmodifiableList
+ (Arrays.asList(refineparsingmethods));
mappedNumMethods = Collections.unmodifiableMap(mappednummethods);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]