package forscher.nocket.generator; // CHECKSTYLE_OFF public final class TestPojoConstants { private TestPojoConstants() {} /** SimplePropertyElement: First Name */ public static final String FirstName = "FirstName"; /** SimplePropertyElement: Last Name */ public static final String LastName = "LastName"; /** CheckboxPropertyElement: Newsletter */ public static final String Newsletter = "Newsletter"; public final class Properties { private Properties() {} /** First Name */ public static final String FirstName = "FirstName"; /** Last Name */ public static final String LastName = "LastName"; /** Newsletter */ public static final String Newsletter = "Newsletter"; } }