package org.apache.cayenne.testdo.numeric_types.auto; import org.apache.cayenne.CayenneDataObject; import org.apache.cayenne.exp.Property; /** * Class _BooleanTestEntity was generated by Cayenne. * It is probably a good idea to avoid changing this class manually, * since it may be overwritten next time code is regenerated. * If you need to make any customizations, please use subclass. */ public abstract class _BooleanTestEntity extends CayenneDataObject { private static final long serialVersionUID = 1L; public static final String ID_PK_COLUMN = "ID"; public static final Property<Boolean> BOOLEAN_COLUMN = Property.create("booleanColumn", Boolean.class); public void setBooleanColumn(Boolean booleanColumn) { writeProperty("booleanColumn", booleanColumn); } public Boolean getBooleanColumn() { return (Boolean)readProperty("booleanColumn"); } }