001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (C) Alkacon Software (http://www.alkacon.com)
006 *
007 * This library is free software; you can redistribute it and/or
008 * modify it under the terms of the GNU Lesser General Public
009 * License as published by the Free Software Foundation; either
010 * version 2.1 of the License, or (at your option) any later version.
011 *
012 * This library is distributed in the hope that it will be useful,
013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015 * Lesser General Public License for more details.
016 *
017 * For further information about Alkacon Software, please see the
018 * company website: http://www.alkacon.com
019 *
020 * For further information about OpenCms, please see the
021 * project website: http://www.opencms.org
022 *
023 * You should have received a copy of the GNU Lesser General Public
024 * License along with this library; if not, write to the Free Software
025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
026 */
027
028package org.opencms.gwt.client.ui.resourceinfo;
029
030import org.opencms.gwt.client.Messages;
031
032/**
033 * Message accessor class for use in uibinder templates.<p>
034 */
035public final class CmsResourceInfoMessages {
036
037    /**
038     * Hidden constructor.<p>
039     */
040    protected CmsResourceInfoMessages() {
041
042        // hidden constructor
043    }
044
045    /**
046     * Message accessor.<p>
047     *
048     * @return the message string
049     */
050    public static String messageDialogTitle() {
051
052        return Messages.get().key(Messages.GUI_RESOURCEINFO_DIALOG_TITLE_0);
053    }
054
055    /**
056     * Message accessor.<p>
057     *
058     * @return the message string
059     */
060    public static String messageFieldsetTitle() {
061
062        return Messages.get().key(Messages.GUI_RESOURCEINFO_FIELDSET_TITLE_0);
063    }
064
065    /**
066     * Message accessor.<p>
067     *
068     * @return the message string
069     */
070    public static String messageLabelDateCreated() {
071
072        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_DATECREATED_0);
073    }
074
075    /**
076     * Message accessor.<p>
077     *
078     * @return the message string
079     */
080    public static String messageLabelDateExpired() {
081
082        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_DATEEXPIRED_0);
083    }
084
085    /**
086     * Message accessor.<p>
087     *
088     * @return the message string
089     */
090    public static String messageLabelDateModified() {
091
092        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_DATEMODIFIED_0);
093    }
094
095    /**
096     * Message accessor.<p>
097     *
098     * @return the message string
099     */
100    public static String messageLabelDateReleased() {
101
102        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_DATERELEASED_0);
103    }
104
105    /**
106     * Message accessor.<p>
107     *
108     * @return the message string
109     */
110    public static String messageLabelLastProject() {
111
112        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_LASTPROJECT_0);
113    }
114
115    /**
116     * Message accessor.<p>
117     *
118     * @return the message string
119     */
120    public static String messageLabelLocales() {
121
122        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_LOCALES_0);
123    }
124
125    /**
126     * Message accessor.<p>
127     *
128     * @return the message string
129     */
130    public static String messageLabelLockOwner() {
131
132        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_LOCKOWNER_0);
133    }
134
135    /**
136     * Message accessor.<p>
137     *
138     * @return the message string
139     */
140    public static String messageLabelLockState() {
141
142        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_LOCKSTATE_0);
143    }
144
145    /**
146     * Message accessor.<p>
147     *
148     * @return the message string
149     */
150    public static String messageLabelNavText() {
151
152        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_NAVTEXT_0);
153    }
154
155    /**
156     * Message accessor.<p>
157     *
158     * @return the message string
159     */
160    public static String messageLabelPermissions() {
161
162        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_PERMISSIONS_0);
163    }
164
165    /**
166     * Message accessor.<p>
167     *
168     * @return the message string
169     */
170    public static String messageLabelSize() {
171
172        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_SIZE_0);
173    }
174
175    /**
176     * Message accessor.<p>
177     *
178     * @return the message string
179     */
180    public static String messageLabelState() {
181
182        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_STATE_0);
183    }
184
185    /**
186     * Message accessor.<p>
187     *
188     * @return the message string
189     */
190    public static String messageLabelTitle() {
191
192        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_TITLE_0);
193    }
194
195    /**
196     * Message accessor.<p>
197     *
198     * @return the message string
199     */
200    public static String messageLabelType() {
201
202        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_TYPE_0);
203    }
204
205    /**
206     * Message accessor.<p>
207     *
208     * @return the message string
209     */
210    public static String messageLabelUserCreated() {
211
212        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_USERCREATED_0);
213    }
214
215    /**
216     * Message accessor.<p>
217     *
218     * @return the message string
219     */
220    public static String messageLabelUserModified() {
221
222        return Messages.get().key(Messages.GUI_RESOURCEINFO_LABEL_USERMODIFIED_0);
223    }
224
225}