001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (c) Alkacon Software GmbH & Co. KG (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 GmbH & Co. KG, 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.workplace.tools.content.propertyviewer;
029
030import org.opencms.i18n.A_CmsMessageBundle;
031import org.opencms.i18n.I_CmsMessageBundle;
032
033/**
034 * Convenience class to access the localized messages of this OpenCms package.
035 * <p>
036 *
037 * @since 7.5.1
038 */
039public final class Messages extends A_CmsMessageBundle {
040
041    /** Message constant for key in the resource bundle. */
042    public static final String GUI_LIST_PROPERTYVIEW_COL_ICON_HELP_0 = "GUI_LIST_PROPERTYVIEW_COL_ICON_HELP_0";
043
044    /** Message constant for key in the resource bundle. */
045    public static final String GUI_LIST_PROPERTYVIEW_COL_ICON_NAME_0 = "GUI_LIST_PROPERTYVIEW_COL_ICON_NAME_0";
046
047    /** Message constant for key in the resource bundle. */
048    public static final String GUI_LIST_PROPERTYVIEW_COL_ID_HELP_0 = "GUI_LIST_PROPERTYVIEW_COL_ID_HELP_0";
049
050    /** Message constant for key in the resource bundle. */
051    public static final String GUI_LIST_PROPERTYVIEW_COL_ID_NAME_0 = "GUI_LIST_PROPERTYVIEW_COL_ID_NAME_0";
052
053    /** Message constant for key in the resource bundle. */
054    public static final String GUI_LIST_PROPERTYVIEW_COL_PATH_HELP_0 = "GUI_LIST_PROPERTYVIEW_COL_PATH_HELP_0";
055
056    /** Message constant for key in the resource bundle. */
057    public static final String GUI_LIST_PROPERTYVIEW_COL_PATH_NAME_0 = "GUI_LIST_PROPERTYVIEW_COL_PATH_NAME_0";
058
059    /** Message constant for key in the resource bundle. */
060    public static final String GUI_LIST_PROPERTYVIEW_COL_PROPERTY_HELP_0 = "GUI_LIST_PROPERTYVIEW_COL_PROPERTY_HELP_0";
061
062    /** Message constant for key in the resource bundle. */
063    public static final String GUI_LIST_PROPERTYVIEW_COL_PROPERTY_NAME_1 = "GUI_LIST_PROPERTYVIEW_COL_PROPERTY_NAME_1";
064
065    /** Message constant for key in the resource bundle. */
066    public static final String GUI_LIST_PROPERTYVIEW_NAME_0 = "GUI_LIST_PROPERTYVIEW_NAME_0";
067
068    /** Message constant for key in the resource bundle. */
069    public static final String GUI_LIST_PROPERTYVIEW_NOTFOUND_0 = "GUI_LIST_PROPERTYVIEW_NOTFOUND_0";
070
071    /** Message constant for key in the resource bundle. */
072    public static final String GUI_MODULES_DETAIL_DIALOG_MESSAGE_0 = "GUI_MODULES_DETAIL_DIALOG_MESSAGE_0";
073
074    /** Message constant for key in the resource bundle. */
075    public static final String GUI_PROPERTYVIEW_ADMIN_TOOL_BLOCK_0 = "GUI_PROPERTYVIEW_ADMIN_TOOL_BLOCK_0";
076
077    /** Message constant for key in the resource bundle. */
078    public static final String LOG_ERR_PROPERTYVIEWER_READALLPROPS_0 = "LOG_ERR_PROPERTYVIEWER_READALLPROPS_0";
079
080    /** Message constant for key in the resource bundle. */
081    public static final String LOG_ERR_PROPERTYVIEWER_READONEPROP_2 = "LOG_ERR_PROPERTYVIEWER_READONEPROP_2";
082
083    /** Message constant for key in the resource bundle. */
084    public static final String LOG_ERR_PROPERTYVIEWER_READRESOURCES_0 = "LOG_ERR_PROPERTYVIEWER_READRESOURCES_0";
085
086    /** Message constant for key in the resource bundle. */
087    public static final String LOG_ERR_PROPERTYVIEWER_READSIBL_1 = "LOG_ERR_PROPERTYVIEWER_READSIBL_1";
088
089    /** Name of the used resource bundle. */
090    private static final String BUNDLE_NAME = "org.opencms.workplace.tools.content.propertyviewer.messages";
091
092    /** Static instance member. */
093    private static final I_CmsMessageBundle INSTANCE = new Messages();
094
095    /**
096     * Hides the public constructor for this utility class.
097     * <p>
098     */
099    private Messages() {
100
101        // hide the constructor
102    }
103
104    /**
105     * Returns an instance of this localized message accessor.
106     * <p>
107     *
108     * @return an instance of this localized message accessor
109     */
110    public static I_CmsMessageBundle get() {
111
112        return INSTANCE;
113    }
114
115    /**
116     * Returns the bundle name for this OpenCms package.
117     * <p>
118     *
119     * @return the bundle name for this OpenCms package
120     */
121    public String getBundleName() {
122
123        return BUNDLE_NAME;
124    }
125}