KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > tagshandler > XDocletTagshandlerMessages


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

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

12 public final class XDocletTagshandlerMessages
13 {
14     /**
15      * @msg.bundle msg="{0} can only be called when the current field is not null."
16      */

17     public final static String JavaDoc ONLY_CALL_FIELD_NOT_NULL = "ONLY_CALL_FIELD_NOT_NULL";
18
19     /**
20      * @msg.bundle msg="{0} can only be called when the current constructor is not null."
21      */

22     public final static String JavaDoc ONLY_CALL_CONSTRUCTOR_NOT_NULL = "ONLY_CALL_CONSTRUCTOR_NOT_NULL";
23
24     /**
25      * @msg.bundle msg="{0} can only be called when the current method is not null."
26      */

27     public final static String JavaDoc ONLY_CALL_METHOD_NOT_NULL = "ONLY_CALL_METHOD_NOT_NULL";
28     /**
29      * @msg.bundle msg="Could not define tag handler class ''{0}'' for template tag ''{1}''."
30      */

31     public final static String JavaDoc TAGDEF_COULDNT_DEF_HANDLER = "TAGDEF_COULDNT_DEF_HANDLER";
32     /**
33      * @msg.bundle msg="Could not instantiate class ''{0}'', not accessible. Template tag handler classes should have
34      * a public no argument constructor."
35      */

36     public final static String JavaDoc TAGDEF_ILLEGALACCESS_EXCEPTION = "TAGDEF_ILLEGALACCESS_EXCEPTION";
37     /**
38      * @msg.bundle msg="Could not instantiate class ''{0}''. Template tag handler classes should have a public no
39      * argument constructor."
40      */

41     public final static String JavaDoc TAGDEF_INSTANTIATION_EXCEPTION = "TAGDEF_INSTANTIATION_EXCEPTION";
42     /**
43      * @msg.bundle msg="{0} parameter not specified for id element. Ignoring id element."
44      */

45     public final static String JavaDoc ID_PARAM_MISSING = "ID_PARAM_MISSING";
46     /**
47      * @msg.bundle msg="{0} attribute must be set!"
48      */

49     public final static String JavaDoc ATTRIBUTE_NOT_SET_ERROR = "ATTRIBUTE_NOT_SET_ERROR";
50 }
51
Popular Tags