1 /*
2 * Copyright 2010 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may
3 * not use this file except in compliance with the License. You may obtain a copy of the License at
4 * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or agreed to in writing, software distributed
5 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
6 * implied. See the License for the specific language governing permissions and limitations under the License.
7 */
8 /**
9 *
10 */
11 package org.kuali.student.lum.lu.ui.main.client.theme;
12
13 import com.google.gwt.core.client.GWT;
14
15 /**
16 * This interface defines the base class required for implementing a theme
17 *
18 * @author wilj
19 */
20 public interface LumTheme {
21 public static final LumTheme INSTANCE = GWT.create(LumTheme.class);
22
23 public LumImages getLumImages();
24
25 public LumCss getLumCss();
26
27 public LumWidgets getLumWidgets();
28 }