husted 2004/06/21 19:24:38
Modified: validator/src/share/org/apache/commons/validator Tag:
VALIDATOR_1_1_2_BRANCH Field.java Form.java
ValidatorResources.java ValidatorUtil.java
validator/src/share/org/apache/commons/validator/util Tag:
VALIDATOR_1_1_2_BRANCH ValidatorUtils.java
Log:
Document that the use of FastHashMap is deprecated.
Revision Changes Path
No revision
No revision
1.31.2.1 +7 -4
jakarta-commons/validator/src/share/org/apache/commons/validator/Field.java
Index: Field.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/Field.java,v
retrieving revision 1.31
retrieving revision 1.31.2.1
diff -u -r1.31 -r1.31.2.1
--- Field.java 21 Feb 2004 17:10:29 -0000 1.31
+++ Field.java 22 Jun 2004 02:24:38 -0000 1.31.2.1
@@ -33,7 +33,7 @@
import java.util.StringTokenizer;
import org.apache.commons.beanutils.PropertyUtils;
-import org.apache.commons.collections.FastHashMap;
+import org.apache.commons.collections.FastHashMap; // DEPRECATED
import org.apache.commons.validator.util.ValidatorUtils;
/**
@@ -41,6 +41,9 @@
* message information and variables to perform the validations and generate
* error messages. Instances of this class are configured with a
* <field> xml element.
+ *
+ * The use of FastHashMap is deprecated and will be replaced in a future
+ * release.
*
* @see org.apache.commons.validator.Form
*/
1.14.2.1 +8 -5
jakarta-commons/validator/src/share/org/apache/commons/validator/Form.java
Index: Form.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/Form.java,v
retrieving revision 1.14
retrieving revision 1.14.2.1
diff -u -r1.14 -r1.14.2.1
--- Form.java 21 Feb 2004 17:10:29 -0000 1.14
+++ Form.java 22 Jun 2004 02:24:38 -0000 1.14.2.1
@@ -28,7 +28,7 @@
import java.util.List;
import java.util.Map;
-import org.apache.commons.collections.FastHashMap;
+import org.apache.commons.collections.FastHashMap; // DEPRECATED
/**
* <p>
@@ -36,7 +36,10 @@
* contained in a list of <code>Field</code> objects. Instances of this class are
* configured with a <form> xml element.
* </p>
- *
+ * <p>
+ * The use of FastHashMap is deprecated and will be replaced in a future
+ * release.
+ * </p>
*/
public class Form implements Serializable {
1.30.2.2 +9 -4
jakarta-commons/validator/src/share/org/apache/commons/validator/ValidatorResources.java
Index: ValidatorResources.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/ValidatorResources.java,v
retrieving revision 1.30.2.1
retrieving revision 1.30.2.2
diff -u -r1.30.2.1 -r1.30.2.2
--- ValidatorResources.java 13 Apr 2004 05:50:11 -0000 1.30.2.1
+++ ValidatorResources.java 22 Jun 2004 02:24:38 -0000 1.30.2.2
@@ -32,7 +32,7 @@
import java.util.Locale;
import java.util.Map;
-import org.apache.commons.collections.FastHashMap;
+import org.apache.commons.collections.FastHashMap; // DEPRECATED
import org.apache.commons.digester.Digester;
import org.apache.commons.digester.xmlrules.DigesterLoader;
import org.apache.commons.logging.Log;
@@ -50,6 +50,11 @@
* <p><strong>Note</strong> - Classes that extend this class
* must be Serializable so that instances may be used in distributable
* application server environments.</p>
+ *
+ * <p>
+ * The use of FastHashMap is deprecated and will be replaced in a future
+ * release.
+ * </p>
*/
public class ValidatorResources implements Serializable {
1.14.2.1 +4 -4
jakarta-commons/validator/src/share/org/apache/commons/validator/Attic/ValidatorUtil.java
Index: ValidatorUtil.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/Attic/ValidatorUtil.java,v
retrieving revision 1.14
retrieving revision 1.14.2.1
diff -u -r1.14 -r1.14.2.1
--- ValidatorUtil.java 21 Feb 2004 17:10:29 -0000 1.14
+++ ValidatorUtil.java 22 Jun 2004 02:24:38 -0000 1.14.2.1
@@ -21,7 +21,7 @@
package org.apache.commons.validator;
-import org.apache.commons.collections.FastHashMap;
+import org.apache.commons.collections.FastHashMap; // DEPRECATED
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
No revision
No revision
1.7.2.1 +7 -4
jakarta-commons/validator/src/share/org/apache/commons/validator/util/ValidatorUtils.java
Index: ValidatorUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/util/ValidatorUtils.java,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -u -r1.7 -r1.7.2.1
--- ValidatorUtils.java 21 Feb 2004 17:10:30 -0000 1.7
+++ ValidatorUtils.java 22 Jun 2004 02:24:38 -0000 1.7.2.1
@@ -26,7 +26,7 @@
import java.util.Iterator;
import org.apache.commons.beanutils.PropertyUtils;
-import org.apache.commons.collections.FastHashMap;
+import org.apache.commons.collections.FastHashMap; // DEPRECATED
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.validator.Arg;
@@ -35,6 +35,9 @@
/**
* Basic utility methods.
+ *
+ * The use of FastHashMap is deprecated and will be replaced in a future
+ * release.
*/
public class ValidatorUtils {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]