1 /*2 * Copyright (c) 2002 The XDoclet team3 * All rights reserved.4 */5 package test.jdo;6 7 import java.util.ArrayList ;8 import java.util.List ;9 10 /**11 * @jdo.persistence-capable12 * persistence-capable-superclass="test.jdo.SuperChild"13 *14 * @author <a HREF="mailto:youremail@yourdomain.com">youremail@yourdomain.com</a>15 */16 public class SubChild extends SuperChild {17 /**18 * @jdo.field19 * collection-type="List"20 * default-fetch-group="true"21 * element-type="test.jdo.Sub"22 */23 private List subParents = new ArrayList ();24 25 /**26 * @jdo.field27 * collection-type="List"28 * element-type="test.jdo.SubChild"29 */30 private List friends = new ArrayList ();31 }32