KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > jdo > MapValue


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 MapValue {
15     /**
16      * @jdo.field
17      * embedded="true"
18      */

19     private MapKey owner;
20
21     /**
22      * @jdo.field
23      * @tjdo.field
24      * map-field="superMap"
25      */

26    private Super tjdoOwner;
27
28    private MapKey tjdoKey;
29
30 }
31
Popular Tags