Generates Java source code from Ant properties. Developed by Jonathan Le.
It converts this:
my.property=My Property
Or this:
<property name="debug" value="true"/>
Into this:
public static final String MY_PROPERTY = "My Property";
public static final boolean DEBUG = true;
There are many uses. For example, you might want to conditionally compile some code based on a property set at build time.
if (DEBUG) {
...
}
But I'm sure you'll be able to come up with more interesting uses than that.
Please see the wiki for instructions on how to use poppy.