KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > template > XDocletTemplateMessages


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

5 package xdoclet.template;
6
7 /**
8  * @author Ara Abrahamian (ara_e_w@yahoo.com)
9  * @created May 31, 2002
10  * @version $Revision: 1.3 $
11  */

12 public final class XDocletTemplateMessages
13 {
14     /**
15      * @msg.bundle msg="Error in template file: \" sign expected but something different found, line={0} of template
16      * file: {1}"
17      */

18     public final static String JavaDoc TEMPLATE_QUOTE_EXPECTED = "TEMPLATE_QUOTE_EXPECTED";
19
20     /**
21      * @msg.bundle msg="Error in template file: = sign expected but something different found, line={0} of template
22      * file: {1}"
23      */

24     public final static String JavaDoc TEMPLATE_EQUALS_EXPECTED = "TEMPLATE_EQUALS_EXPECTED";
25
26     /**
27      * @msg.bundle msg="Template file {0} not found."
28      */

29     public final static String JavaDoc TEMPLATE_NOT_FOUND = "TEMPLATE_NOT_FOUND";
30
31     /**
32      * @msg.bundle msg="An error occured while writing output to file {0}"
33      */

34     public final static String JavaDoc TEMPLATE_ERROR_WRITING_OUTPUT = "TEMPLATE_ERROR_WRITING_OUTPUT";
35
36     /**
37      * @msg.bundle msg="Could not find tag handler for prefix: {0}"
38      */

39     public final static String JavaDoc TEMPLATE_NO_TAGHANDLER = "TEMPLATE_NO_TAGHANDLER";
40
41     /**
42      * @msg.bundle msg="Unable to create instance of tag handler class: {0} because {1}"
43      */

44     public final static String JavaDoc TEMPLATE_ILLEGALACCESSEXCEPTION = "TEMPLATE_ILLEGALACCESSEXCEPTION";
45
46     /**
47      * @msg.bundle msg="Unable to create instance of tag handler class: {0} because {1}"
48      */

49     public final static String JavaDoc TEMPLATE_INSTANTIATIONEXCEPTION = "TEMPLATE_INSTANTIATIONEXCEPTION";
50
51     /**
52      * @msg.bundle msg="Unable to load tag handler class: {0} because {1}"
53      */

54     public final static String JavaDoc TEMPLATE_CLASSNOTFOUNDEXCEPTION = "TEMPLATE_CLASSNOTFOUNDEXCEPTION";
55
56     /**
57      * @msg.bundle msg="Unable to load tag handler class: {0} because {1}"
58      */

59     public final static String JavaDoc TEMPLATE_NOCLASSDEFFOUNDERROR = "TEMPLATE_NOCLASSDEFFOUNDERROR";
60
61     /**
62      * @msg.bundle msg="Couldn''t load tag mapping file from jar."
63      */

64     public final static String JavaDoc TEMPLATE_COULDNT_LOAD_MAPPINGS = "TEMPLATE_COULDNT_LOAD_MAPPINGS";
65
66     /**
67      * @msg.bundle msg="Could not find method {0} in class {1} ({2})"
68      */

69     public final static String JavaDoc TEMPLATE_NO_SUCH_METHOD = "TEMPLATE_NO_SUCH_METHOD";
70
71     /**
72      * @msg.bundle msg="Invoking method in class {0} failed: {1}, line={2} of template file: {3}, exception: {4}"
73      */

74     public final static String JavaDoc TEMPLATE_INVOKE_METHOD_FAILED = "TEMPLATE_INVOKE_METHOD_FAILED";
75
76     /**
77      * @msg.bundle msg="Error in template file: corresponding {0} not found, line={1} of template file: {2}"
78      */

79     public final static String JavaDoc TEMPLATE_CORRESPONDING_TAG_MISSING = "TEMPLATE_CORRESPONDING_TAG_MISSING";
80
81     /**
82      * @msg.bundle msg="Error in template file: corresponding {0} not found, line={1} of template file: {2}"
83      */

84     public final static String JavaDoc TEMPLATE_CLOSE_TAG_MISSING = "TEMPLATE_CLOSE_TAG_MISSING";
85
86     /**
87      * @msg.bundle msg="Error in template file: > sign expected after / sign but something different found, line={0}
88      * of template file: {1}"
89      */

90     public final static String JavaDoc TEMPLATE_GT_EXPECTED = "TEMPLATE_GT_EXPECTED";
91
92     /**
93      * @msg.bundle msg="Unable to read properties file due to IOException: {0}"
94      */

95     public final static String JavaDoc TEMPLATE_IOEXCEPTION = "TEMPLATE_IOEXCEPTION";
96
97     /**
98      * @msg.bundle msg="''{0}'' parameter missing. Specify both ''destinationFile'' and ''templateFile'' configuration
99      * parameters please."
100      */

101     public final static String JavaDoc TEMPLATE_PARAMETER_MISSING = "TEMPLATE_PARAMETER_MISSING";
102
103     /**
104      * @msg.bundle msg="Error in template file: syntax error, line={0} of template file: {1} affecting template: {2}"
105      */

106     public final static String JavaDoc TEMPLATE_SYNTAX_ERROR = "TEMPLATE_SYNTAX_ERROR";
107
108 }
109
Popular Tags