package org.apache.cayenne.testdo.numeric_types.auto; import org.apache.cayenne.CayenneDataObject; import org.apache.cayenne.exp.Property; /** * Class _BitTestEntity 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 _BitTestEntity extends CayenneDataObject { private static final long serialVersionUID = 1L; public static final String ID_PK_COLUMN = "ID"; public static final Property<Boolean> BIT_COLUMN = Property.create("bitColumn", Boolean.class); public void setBitColumn(Boolean bitColumn) { writeProperty("bitColumn", bitColumn); } public Boolean getBitColumn() { return (Boolean)readProperty("bitColumn"); } }