package org.apache.cayenne.testdo.inheritance_horizontal.auto; import org.apache.cayenne.CayenneDataObject; /** * Class _AbstractSuperEntity 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 _AbstractSuperEntity extends CayenneDataObject { public static final String SUPER_INT_ATTR_PROPERTY = "superIntAttr"; public static final String SUPER_STRING_ATTR_PROPERTY = "superStringAttr"; public void setSuperIntAttr(int superIntAttr) { writeProperty("superIntAttr", superIntAttr); } public int getSuperIntAttr() { Object value = readProperty("superIntAttr"); return (value != null) ? (Integer) value : 0; } public void setSuperStringAttr(String superStringAttr) { writeProperty("superStringAttr", superStringAttr); } public String getSuperStringAttr() { return (String)readProperty("superStringAttr"); } }