KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > jdo > SuperChild


1 /*
2  * Copyright (c) 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package test.jdo;
6
7 /**
8  * @jdo.persistence-capable
9  * identity-type="datastore"
10  * requires-extent="true"
11  *
12  * @author <a HREF="mailto:youremail@yourdomain.com">youremail@yourdomain.com</a>
13  */

14 public class SuperChild {
15     /**
16      * @jdo.field
17      * default-fetch-group="true"
18      * embedded="false"
19      */

20     private Super superParent;
21
22     /**
23      * @jdo.field
24      * @tjdo.field
25      * collection-field="superList"
26      * map-field="superMap"
27      */

28    private Super tjdoOwner;
29 }
30
Popular Tags