KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > retest > XDocletRetestMessages


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

5 package xdoclet.retest;
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 XDocletRetestMessages
13 {
14     /**
15      * @msg.bundle msg="{0} is not an interface"
16      */

17     public final static String JavaDoc IS_NOT_AN_INTERFACE = "IS_NOT_AN_INTERFACE";
18
19     /**
20      * @msg.bundle msg="{0} is not a class"
21      */

22     public final static String JavaDoc IS_NOT_A_CLASS = "IS_NOT_A_CLASS";
23
24     /**
25      * @msg.bundle msg="Mismatched number of interfaces between {0} and {1}"
26      */

27     public final static String JavaDoc MISMATCH_NUMBER_INTERFACE = "MISMATCH_NUMBER_INTERFACE";
28
29     /**
30      * @msg.bundle msg="Interface {0} defined only in {1}"
31      */

32     public final static String JavaDoc INTERFACE_DEFINED_ONLY_IN = "INTERFACE_DEFINED_ONLY_IN";
33
34     /**
35      * @msg.bundle msg="Method {0} defined only in {1}"
36      */

37     public final static String JavaDoc METHOD_DEFINED_ONLY_IN = "METHOD_DEFINED_ONLY_IN";
38
39     /**
40      * @msg.bundle msg="Method {0} does not have same name as method {1}"
41      */

42     public final static String JavaDoc METHOD_DOES_NOT_HAVE_SAME_NAME = "METHOD_DOES_NOT_HAVE_SAME_NAME";
43
44     /**
45      * @msg.bundle msg="Method {0} does not have same return type: {1} and {2}"
46      */

47     public final static String JavaDoc METHOD_DOES_NOT_HAVE_SAME_RETURN_TYPE = "METHOD_DOES_NOT_HAVE_SAME_RETURN_TYPE";
48
49     /**
50      * @msg.bundle msg="Method {0} and {1} does not have same number of parameters"
51      */

52     public final static String JavaDoc METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_PARAM = "METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_PARAM";
53
54     /**
55      * @msg.bundle msg="Method {0} and {1} does not have same Type of parameters"
56      */

57     public final static String JavaDoc METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_PARAM = "METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_PARAM";
58
59     /**
60      * @msg.bundle msg="Method {0} and {1} does not have same number of exceptions"
61      */

62     public final static String JavaDoc METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_EXCEPTIONS = "METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_EXCEPTIONS";
63
64     /**
65      * @msg.bundle msg="Method {0} and {1} does not have same Type of exceptons"
66      */

67     public final static String JavaDoc METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_EXCEPTIONS = "METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_EXCEPTIONS";
68
69     /**
70      * @msg.bundle msg="A difference exists between the two XMLs : {0}"
71      */

72     public final static String JavaDoc XML_DIFF = "XML_DIFF";
73 }
74
Popular Tags