package org.appng.xml; /** Property constants for My App 1.0 */ public class ApplicationProperty { /** this is property a */ public static final String PROP_PROPERTY_A = "propertyA"; /** this is property b */ public static final String PROP_PROPERTY_B = "propertyB"; /** this is property c (multiline) */ public static final String PROP_PROPERTY_C = "propertyC"; /** contains a dot and a UTF-8 character */ public static final String PROP_SOME_UTF_8_€ = "some.utf-8-€"; }