KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > jdo > XDocletModulesJdoMessages


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

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

12 public final class XDocletModulesJdoMessages
13 {
14
15     /**
16      * @msg.bundle msg="Functionality not yet supported for vendor {0}"
17      */

18     public final static String JavaDoc NOT_YET_SUPPORTED = "NOT_YET_SUPPORTED";
19
20     /**
21      * @msg.bundle msg="Java arrays are not supported by vendor {0}"
22      */

23     public final static String JavaDoc NOT_SUPPORTED_ARRAY = "NOT_SUPPORTED_ARRAY";
24
25     /**
26      * @msg.bundle msg="Maps are not supported by vendor {0}"
27      */

28     public final static String JavaDoc NOT_SUPPORTED_MAP = "NOT_SUPPORTED_MAP";
29
30     /**
31      * @msg.bundle msg="Tag {0} with attribute {1}={2} is not supported by vendor {3}"
32      */

33     public final static String JavaDoc NOT_SUPPORTED_TAG_ATTRIBUTE_VALUE = "NOT_SUPPORTED_TAG_ATTRIBUTE_VALUE";
34
35     /**
36      * @msg.bundle msg="Vendor {0} doesn't support mapping of field on multiple tables"
37      */

38     public final static String JavaDoc NOT_SUPPORTED_MULTIPLE_TABLE_MAPPING = "NOT_SUPPORTED_MULTIPLE_TABLE_MAPPING";
39 }
40
Popular Tags