Posted By:
Christopher_Schultz
Posted On:
Monday, January 21, 2002 05:01 AM
The only issues that I can see with the
Properties object is that it can only hold keys and values of type
java.lang.String.
If you want to be extra-safe, write your own properties-style class which uses a java.util.Properties object to store its data. If you determine that the performance is too slow, you can re-write the implementation of your properties-style class and not have to modify any of your other code.
-chris