package org.apache.cayenne.testdo.inheritance_horizontal.auto; import org.apache.cayenne.testdo.inheritance_horizontal.AbstractSuperEntity; /** * Class _SubEntity3 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 _SubEntity3 extends AbstractSuperEntity { public static final String SUB_BOOLEAN_ATTR_PROPERTY = "subBooleanAttr"; public static final String ID_PK_COLUMN = "id"; public void setSubBooleanAttr(boolean subBooleanAttr) { writeProperty("subBooleanAttr", subBooleanAttr); } public boolean isSubBooleanAttr() { Boolean value = (Boolean)readProperty("subBooleanAttr"); return (value != null) ? value.booleanValue() : false; } }