KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > solarmetric > jdo > XDocletModulesSolarmetricMessages


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

5 package xdoclet.modules.solarmetric.jdo;
6
7 /**
8  * @author Ludovic Claude (ludovicc@users.sourceforge.net)
9  * @created 11 October 2002
10  * @version $Revision: 1.2 $
11  */

12 public final class XDocletModulesSolarmetricMessages
13 {
14
15     /**
16      * @msg.bundle msg="Kodo doesn't support the use of primary key fields with datastore identity. Use application
17      * identity or use a hidden int column as primary key (not visible in the class)"
18      */

19     public final static String JavaDoc NOT_SUPPORTED_PK_FIELD_AND_DATASTORE_IDENTITY = "NOT_SUPPORTED_PK_AND_DATASTORE";
20
21     /**
22      * @msg.bundle msg="Kodo doesn't support the use of tag kodo.table with attribute pk-column with datastore
23      * identity."
24      */

25     public final static String JavaDoc NOT_SUPPORTED_PK_COLUMN_AND_DATASTORE_IDENTITY = "NOT_SUPPORTED_PK_AND_DATASTORE";
26
27 }
28
Popular Tags