KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > i18n > TestCmsModuleMessageBundles


1 /*
2  * File : $Source: /usr/local/cvs/opencms/test/org/opencms/i18n/TestCmsModuleMessageBundles.java,v $
3  * Date : $Date: 2006/03/27 14:52:51 $
4  * Version: $Revision: 1.16 $
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.i18n;
33
34 /**
35  * Tests all {@link org.opencms.i18n.I_CmsMessageBundle} instances for the OpenCms
36  * module classes (folder src-modules, org.* packages). <p>
37  *
38  * @author Achim Westermann
39  *
40  * @version $Revision: 1.16 $
41  *
42  * @since 6.0.0
43  */

44 public final class TestCmsModuleMessageBundles extends TestCmsMessageBundles {
45
46     /**
47      * @see org.opencms.i18n.TestCmsMessageBundles#getTestMessageBundles()
48      */

49     protected I_CmsMessageBundle[] getTestMessageBundles() {
50
51         return new I_CmsMessageBundle[] {
52             org.opencms.frontend.templateone.Messages.get(),
53             org.opencms.frontend.templateone.form.Messages.get(),
54             org.opencms.frontend.templateone.modules.Messages.get(),
55             org.opencms.workplace.administration.Messages.get(),
56             org.opencms.workplace.demos.Messages.get(),
57             org.opencms.workplace.demos.list.Messages.get(),
58             org.opencms.workplace.demos.widget.Messages.get(),
59             org.opencms.workplace.tools.content.Messages.get(),
60             org.opencms.workplace.tools.content.check.Messages.get(),
61             org.opencms.workplace.tools.database.Messages.get(),
62             org.opencms.workplace.tools.galleryoverview.Messages.get(),
63             org.opencms.workplace.tools.history.Messages.get(),
64             org.opencms.workplace.tools.modules.Messages.get(),
65             org.opencms.workplace.tools.scheduler.Messages.get(),
66             org.opencms.workplace.tools.searchindex.Messages.get(),
67             org.opencms.workplace.tools.accounts.Messages.get(),
68             org.opencms.workplace.tools.cache.Messages.get(),
69             org.opencms.workplace.tools.projects.Messages.get(),
70             org.opencms.workplace.tools.workplace.Messages.get(),
71             org.opencms.workplace.tools.workplace.rfsfile.Messages.get(),
72             org.opencms.workplace.tools.workplace.broadcast.Messages.get()};
73     }
74
75 }
76
Popular Tags