KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > widgets > Messages


1 /*
2  * File : $Source: /usr/local/cvs/opencms/src/org/opencms/widgets/Messages.java,v $
3  * Date : $Date: 2006/03/27 14:52:19 $
4  * Version: $Revision: 1.9 $
5  *
6  * This library is part of OpenCms -
7  * the Open Source Content Mananagement System
8  *
9  * Copyright (c) 2005 Alkacon Software GmbH (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 GmbH, 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 org.opencms.widgets;
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  * @version $Revision: 1.9 $
41  *
42  * @since 6.0.0
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_EDITOR_MESSAGE_NOSELECTION_0 = "ERR_EDITOR_MESSAGE_NOSELECTION_0";
48
49     /** Message constant for key in the resource bundle. */
50     public static final String JavaDoc ERR_MALFORMED_SELECT_OPTIONS_1 = "ERR_MALFORMED_SELECT_OPTIONS_1";
51
52     /** Message constant for key in the resource bundle. */
53     public static final String JavaDoc ERR_MAP_DUPLICATE_KEY_3 = "ERR_MAP_DUPLICATE_KEY_3";
54
55     /** Message constant for key in the resource bundle. */
56     public static final String JavaDoc ERR_MAP_PARAMETER_FORM_1 = "ERR_MAP_PARAMETER_FORM_1";
57
58     /** Message constant for key in the resource bundle. */
59     public static final String JavaDoc ERR_NO_PROPERTY_2 = "ERR_NO_PROPERTY_2";
60
61     /** Message constant for key in the resource bundle. */
62     public static final String JavaDoc ERR_NO_WIDGET_DIALOG_0 = "ERR_NO_WIDGET_DIALOG_0";
63
64     /** Message constant for key in the resource bundle. */
65     public static final String JavaDoc ERR_PARSE_DATETIME_1 = "ERR_PARSE_DATETIME_1";
66
67     /** Message constant for key in the resource bundle. */
68     public static final String JavaDoc ERR_PROPERTY_READ_2 = "ERR_PROPERTY_READ_2";
69
70     /** Message constant for key in the resource bundle. */
71     public static final String JavaDoc ERR_PROPERTY_WRITE_3 = "ERR_PROPERTY_WRITE_3";
72
73     /** Message constant for key in the resource bundle. */
74     public static final String JavaDoc ERR_WIDGETCOLLECTOR_ADD_1 = "ERR_WIDGETCOLLECTOR_ADD_1";
75
76     /** Message constant for key in the resource bundle. */
77     public static final String JavaDoc GUI_BUTTON_ANCHOR_0 = "GUI_BUTTON_ANCHOR_0";
78
79     /** Message constant for key in the resource bundle. */
80     public static final String JavaDoc GUI_BUTTON_COLOR_0 = "GUI_BUTTON_COLOR_0";
81
82     /** Message constant for key in the resource bundle. */
83     public static final String JavaDoc GUI_BUTTON_ERASE_0 = "GUI_BUTTON_ERASE_0";
84
85     /** Message constant for key in the resource bundle. */
86     public static final String JavaDoc GUI_BUTTON_LINKTO_0 = "GUI_BUTTON_LINKTO_0";
87
88     /** Message constant for key in the resource bundle. */
89     public static final String JavaDoc GUI_BUTTON_PREVIEW_0 = "GUI_BUTTON_PREVIEW_0";
90
91     /** Message constant for key in the resource bundle. */
92     public static final String JavaDoc GUI_DIALOG_COLOR_TITLE_0 = "GUI_DIALOG_COLOR_TITLE_0";
93
94     /** Message constant for key in the resource bundle. */
95     public static final String JavaDoc GUI_EDITOR_BUTTON_DOWNLOADLIST_0 = "GUI_EDITOR_BUTTON_DOWNLOADLIST_0";
96
97     /** Message constant for key in the resource bundle. */
98     public static final String JavaDoc GUI_EDITOR_BUTTON_HTMLLIST_0 = "GUI_EDITOR_BUTTON_HTMLLIST_0";
99
100     /** Message constant for key in the resource bundle. */
101     public static final String JavaDoc GUI_EDITOR_BUTTON_IMAGELIST_0 = "GUI_EDITOR_BUTTON_IMAGELIST_0";
102
103     /** Message constant for key in the resource bundle. */
104     public static final String JavaDoc GUI_EDITOR_BUTTON_LINKLIST_0 = "GUI_EDITOR_BUTTON_LINKLIST_0";
105
106     /** Message constant for key in the resource bundle. */
107     public static final String JavaDoc GUI_EDITOR_BUTTON_TABLELIST_0 = "GUI_EDITOR_BUTTON_TABLELIST_0";
108
109     /** Message constant for key in the resource bundle. */
110     public static final String JavaDoc LOG_CREATE_HTMLWIDGET_INSTANCE_FAILED_1 = "LOG_CREATE_HTMLWIDGET_INSTANCE_FAILED_1";
111
112     /** Message constant for key in the resource bundle. */
113     public static final String JavaDoc LOG_DEBUG_WIDGETCOLLECTOR_ADD_1 = "LOG_DEBUG_WIDGETCOLLECTOR_ADD_1";
114
115     /** Name of the used resource bundle. */
116     private static final String JavaDoc BUNDLE_NAME = "org.opencms.widgets.messages";
117
118     /**Prefix to create button message key. */
119     private static final String JavaDoc GUI_BUTTON_PREF = "GUI_EDITOR_BUTTON_";
120
121     /**postfix to create button message key. */
122     private static final String JavaDoc GUI_BUTTON_SUF = "LIST_0";
123
124     /** Static instance member. */
125     private static final I_CmsMessageBundle INSTANCE = new Messages();
126
127     /**
128      * Hides the public constructor for this utility class.<p>
129      */

130     private Messages() {
131
132         // hide the constructor
133
}
134
135     /**
136      * Returns an instance of this localized message accessor.<p>
137      *
138      * @return an instance of this localized message accessor
139      */

140     public static I_CmsMessageBundle get() {
141
142         return INSTANCE;
143     }
144
145     /**
146      * Create button message key.
147      *
148      * @param gallery name
149      * @return Button message key as String
150      */

151     public static String JavaDoc getButtonName(String JavaDoc gallery) {
152
153         StringBuffer JavaDoc sb = new StringBuffer JavaDoc(GUI_BUTTON_PREF);
154         sb.append(gallery.toUpperCase());
155         sb.append(GUI_BUTTON_SUF);
156         return sb.toString();
157     }
158
159     /**
160      * Returns the bundle name for this OpenCms package.<p>
161      *
162      * @return the bundle name for this OpenCms package
163      */

164     public String JavaDoc getBundleName() {
165
166         return BUNDLE_NAME;
167     }
168 }
Popular Tags