View Javadoc

1   /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.student.lum.ui.theme.standard.client;
17  
18  import com.google.gwt.core.client.GWT;
19  
20  import com.google.gwt.resources.client.ClientBundleWithLookup;
21  import com.google.gwt.resources.client.CssResource;
22  import com.google.gwt.resources.client.ImageResource;
23  
24  public interface LumClientBundle extends ClientBundleWithLookup{
25  	public static final LumClientBundle INSTANCE =  GWT.create(LumClientBundle.class);
26  
27  	@Source("org/kuali/student/lum/ui/theme/standard/public/css/LumLandingPage.css")
28  	@CssResource.NotStrict
29  	public CssResource lumLandingPageCss();
30  	
31  	@Source("org/kuali/student/lum/ui/theme/standard/public/css/LumMain.css")
32  	@CssResource.NotStrict
33  	public CssResource lumMainCss();
34  
35  	@Source("org/kuali/student/lum/ui/theme/standard/public/css/Course.css")
36  	@CssResource.NotStrict
37  	public CssResource courseCss();
38  
39  	@Source("org/kuali/student/lum/ui/theme/standard/public/css/Program.css")
40  	@CssResource.NotStrict
41  	public CssResource programCss();
42  
43  	@Source("org/kuali/student/lum/ui/theme/standard/public/images/gradcap-1.png")
44  	@CssResource.NotStrict
45  	public ImageResource curriculumManagementImage();
46  	
47  	@Source("org/kuali/student/lum/ui/theme/standard/public/images/gear.png")
48  	@CssResource.NotStrict
49  	public ImageResource analyzeCurriculumImage();
50  	
51  	@Source("org/kuali/student/lum/ui/theme/standard/public/images/plus-circle.png")
52  	@CssResource.NotStrict
53  	public ImageResource proposeCurriculumImage();
54  
55  	@Source("org/kuali/student/lum/ui/theme/standard/public/css/PagingScrollTable.css")
56  	@CssResource.NotStrict
57  	public CssResource pagingScrollTableCss();
58  
59  }