01: /*
02: * Coefficient - facilitates project based collaboration
03: * Copyright (C) 2003, Dylan Etkin, CSIR icomtek
04: * PO Box 395
05: * Pretoria 0001, RSA
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or (at your option) any later version.
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, write to the Free Software
17: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18: */
19:
20: package za.org.coefficient.themes.defaultTheme;
21:
22: import za.org.coefficient.html.Theme;
23:
24: /**
25: * @pojo2ejb.class
26: * name="DefaultTheme"
27: * jndi-prefix="za/org/coefficient/themes/"
28: * interface-extends="za.org.coefficient.interfaces.ThemeIf"
29: * interface-local-extends="za.org.coefficient.interfaces.ThemeLocalIf"
30: *
31: * @web.resource-env-ref
32: * name="za/org/coefficient/themes/DefaultTheme"
33: * type="za.org.coefficient.themes.defaultTheme.DefaultTheme"
34: * @web.resource-env-ref
35: * name="DefaultTheme"
36: * type="za.org.coefficient.themes.defaultTheme.DefaultTheme"
37: */
38: public class DefaultTheme extends Theme {
39: //~ Constructors ===========================================================
40:
41: public DefaultTheme() {
42: init("DefaultTheme");
43: }
44:
45: }
|