KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opencms > legacy > Messages


1 /*
2  * File : $Source: /usr/local/cvs/opencms/src-modules/com/opencms/legacy/Messages.java,v $
3  * Date : $Date: 2006/03/27 14:53:03 $
4  * Version: $Revision: 1.7 $
5  *
6  * This library is part of OpenCms -
7  * the Open Source Content Mananagement System
8  *
9  * Copyright (C) 2002 - 2004 Alkacon Software (http://www.alkacon.com)
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * For further information about Alkacon Software, please see the
22  * company website: http://www.alkacon.com
23  *
24  * For further information about OpenCms, please see the
25  * project website: http://www.opencms.org
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with this library; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  */

31  
32 package com.opencms.legacy;
33
34 import org.opencms.i18n.A_CmsMessageBundle;
35 import org.opencms.i18n.I_CmsMessageBundle;
36
37 /**
38  * Convenience class to access the localized messages of this OpenCms package.<p>
39  *
40  * @author Thomas Weckert (t.weckert@alkacon.com)
41  * @author Jan Baudisch (j.baudisch@alkacon.com)
42  * @since 5.7.3
43  */

44 public final class Messages extends A_CmsMessageBundle {
45    
46     /** Message constant for key in the resource bundle. */
47     public static final String JavaDoc ERR_COS_ACCESS_CHANNEL_1 = "ERR_COS_ACCESS_CHANNEL_1";
48     
49     /** Message constant for key in the resource bundle. */
50     public static final String JavaDoc ERR_COS_IMPORTEXPORT_ERROR_ADDING_CHILD_RESOURCES_1 = "ERR_COS_IMPORTEXPORT_ERROR_ADDING_CHILD_RESOURCES_1";
51    
52     /** Message constant for key in the resource bundle. */
53     public static final String JavaDoc ERR_COS_IMPORTEXPORT_ERROR_EXPORTING_TO_FILE_1 = "ERR_COS_IMPORTEXPORT_ERROR_EXPORTING_TO_FILE_1";
54     
55     /** Message constant for key in the resource bundle. */
56     public static final String JavaDoc ERR_COS_IMPORTEXPORT_ERROR_IMPORTING_RESOURCES_0 = "ERR_COS_IMPORTEXPORT_ERROR_IMPORTING_RESOURCES_0";
57    
58     /** Message constant for key in the resource bundle. */
59     public static final String JavaDoc ERR_COS_INDEXING_CONTENTS_1 = "ERR_COS_INDEXING_CONTENTS_1";
60    
61     /** Message constant for key in the resource bundle. */
62     public static final String JavaDoc ERR_COS_INDEXING_CONTENTS_OF_CLASS_1 = "ERR_COS_INDEXING_CONTENTS_OF_CLASS_1";
63    
64     /** Message constant for key in the resource bundle. */
65     public static final String JavaDoc RPT_ARGUMENT_2 = "RPT_ARGUMENT_2";
66    
67     /** Message constant for key in the resource bundle. */
68     public static final String JavaDoc RPT_EXPORT_CHANNELS_BEGIN_0 = "RPT_EXPORT_CHANNELS_BEGIN_0";
69    
70     /** Message constant for key in the resource bundle. */
71     public static final String JavaDoc RPT_EXPORT_CHANNELS_END_0 = "RPT_EXPORT_CHANNELS_END_0";
72    
73     /** Message constant for key in the resource bundle. */
74     public static final String JavaDoc RPT_EXPORT_MODULE_BEGIN_1 = "RPT_EXPORT_MODULE_BEGIN_1";
75    
76     /** Message constant for key in the resource bundle. */
77     public static final String JavaDoc RPT_EXPORT_MODULE_END_0 = "RPT_EXPORT_MODULE_END_0";
78     
79     /** Message constant for key in the resource bundle. */
80     public static final String JavaDoc RPT_EXPORT_WITH_ID_2 = "RPT_EXPORT_WITH_ID_2";
81     
82     /** Message constant for key in the resource bundle. */
83     public static final String JavaDoc RPT_IMPORT_CHANNELS_BEGIN_0 = "RPT_IMPORT_CHANNELS_BEGIN_0";
84     
85     /** Message constant for key in the resource bundle. */
86     public static final String JavaDoc RPT_IMPORT_CHANNELS_END_0 = "RPT_IMPORT_CHANNELS_END_0";
87     
88     /** Message constant for key in the resource bundle. */
89     public static final String JavaDoc RPT_IMPORT_MODULE_BEGIN_0 = "RPT_IMPORT_MODULE_BEGIN_0";
90     
91     /** Message constant for key in the resource bundle. */
92     public static final String JavaDoc RPT_IMPORT_MODULE_END_0 = "RPT_IMPORT_MODULE_END_0";
93    
94     /** Message constant for key in the resource bundle. */
95     public static final String JavaDoc RPT_IMPORT_VERSION_1 = "RPT_IMPORT_VERSION_1";
96    
97     /** Message constant for key in the resource bundle. */
98     public static final String JavaDoc RPT_INDEX_CHANNEL_0 = "RPT_INDEX_CHANNEL_0";
99     
100     /** Message constant for key in the resource bundle. */
101     public static final String JavaDoc RPT_MUST_SET_TO_1 = "RPT_MUST_SET_TO_1";
102     
103     /** Message constant for key in the resource bundle. */
104     public static final String JavaDoc RPT_NONEXISTENT_PUBLISH_CLASS_FOR_MODULE_1 = "RPT_NONEXISTENT_PUBLISH_CLASS_FOR_MODULE_1";
105
106     /** Name of the used resource bundle. */
107     private static final String JavaDoc BUNDLE_NAME = "com.opencms.legacy.messages";
108
109     /** Static instance member. */
110     private static final I_CmsMessageBundle INSTANCE = new Messages();
111
112     /**
113      * Hides the public constructor for this utility class.<p>
114      */

115     private Messages() {
116
117         // hide the constructor
118
}
119
120     /**
121      * Returns an instance of this localized message accessor.<p>
122      *
123      * @return an instance of this localized message accessor
124      */

125     public static I_CmsMessageBundle get() {
126
127         return INSTANCE;
128     }
129
130     /**
131      * Returns the bundle name for this OpenCms package.<p>
132      *
133      * @return the bundle name for this OpenCms package
134      */

135     public String JavaDoc getBundleName() {
136
137         return BUNDLE_NAME;
138     }
139
140 }
141
Popular Tags