package org.apache.cayenne.testdo.inheritance_people.auto; import java.util.List; import org.apache.cayenne.CayenneDataObject; import org.apache.cayenne.exp.Property; import org.apache.cayenne.testdo.inheritance_people.CustomerRepresentative; /** * Class _ClientCompany 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 _ClientCompany extends CayenneDataObject { private static final long serialVersionUID = 1L; public static final String CLIENT_COMPANY_ID_PK_COLUMN = "CLIENT_COMPANY_ID"; public static final Property<String> NAME = Property.create("name", String.class); public static final Property<List<CustomerRepresentative>> REPRESENTATIVES = Property.create("representatives", List.class); public void setName(String name) { writeProperty("name", name); } public String getName() { return (String)readProperty("name"); } public void addToRepresentatives(CustomerRepresentative obj) { addToManyTarget("representatives", obj, true); } public void removeFromRepresentatives(CustomerRepresentative obj) { removeToManyTarget("representatives", obj, true); } @SuppressWarnings("unchecked") public List<CustomerRepresentative> getRepresentatives() { return (List<CustomerRepresentative>)readProperty("representatives"); } }