package org.apache.cayenne.testdo.map_to_many.auto; import org.apache.cayenne.CayenneDataObject; import org.apache.cayenne.exp.Property; import org.apache.cayenne.testdo.map_to_many.MapToMany; /** * Class _MapToManyTarget 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 _MapToManyTarget extends CayenneDataObject { private static final long serialVersionUID = 1L; public static final String ID_PK_COLUMN = "ID"; public static final Property<String> NAME = Property.create("name", String.class); public static final Property<MapToMany> MAP_TO_MANY = Property.create("mapToMany", MapToMany.class); public void setName(String name) { writeProperty("name", name); } public String getName() { return (String)readProperty("name"); } public void setMapToMany(MapToMany mapToMany) { setToOneTarget("mapToMany", mapToMany, true); } public MapToMany getMapToMany() { return (MapToMany)readProperty("mapToMany"); } }