(Imported from Google Code)
Rev 219: Several XML prefixes that were exposed as static variables for convenience (i.e. Util.DDMS_PREFIX and AbstractBaseComponent.ICISM_PREFIX) have been removed. They should now be pulled directly from the PropertyReader via:
PropertyReader.getProperty("ddms.prefix"
PropertyReader.getProperty("gml.prefix"
PropertyReader.getProperty("icism.prefix"
The intent of this change is to allow the prefixes to be changed programmatically, rather than requiring a property change followed by a JVM restart.
Rev 220: The ddmsence-config.properties file, which was introduced in v1.2, has been removed. Previously, you would change a configurable property by uncommenting it in the ddmsence-config.properties file and modifying the value, like:
buri.ddmsence.ddms.prefix=DDMS
Now, changes can be made from within your code, and can be done more than once per JVM start:
PropertyReader.setProperty("ddms.prefix", "DDMS");