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.common.ui.theme.standard.client;
17  
18  import org.kuali.student.common.ui.client.theme.RichTextEditorImages;
19  
20  import com.google.gwt.user.client.ui.Image;
21  
22  public class RichTextEditorImagesImpl implements RichTextEditorImages{
23  
24  	@Override
25  	public Image bold() {
26  		
27  		return new Image(KSClientBundle.INSTANCE.bold());
28  	}
29  
30  	@Override
31  	public Image createLink() {
32  		
33  		return new Image(KSClientBundle.INSTANCE.createLink());
34  	}
35  
36  	@Override
37  	public Image hr() {
38  		
39  		return new Image(KSClientBundle.INSTANCE.hr());
40  	}
41  
42  	@Override
43  	public Image indent() {
44  		
45  		return new Image(KSClientBundle.INSTANCE.indent());
46  	}
47  
48  	@Override
49  	public Image insertImage() {
50  		
51  		return new Image(KSClientBundle.INSTANCE.insertImage());
52  	}
53  
54  	@Override
55  	public Image italic() {
56  		
57  		return new Image(KSClientBundle.INSTANCE.italic());
58  	}
59  
60  	@Override
61  	public Image justifyCenter() {
62  		
63  		return new Image(KSClientBundle.INSTANCE.justifyCenter());
64  	}
65  
66  	@Override
67  	public Image justifyLeft() {
68  		
69  		return new Image(KSClientBundle.INSTANCE.justifyLeft());
70  	}
71  
72  	@Override
73  	public Image justifyRight() {
74  		
75  		return new Image(KSClientBundle.INSTANCE.justifyRight());
76  	}
77  
78  	@Override
79  	public Image ol() {
80  		
81  		return new Image(KSClientBundle.INSTANCE.ol());
82  	}
83  
84  	@Override
85  	public Image outdent() {
86  		
87  		return new Image(KSClientBundle.INSTANCE.outdent());
88  	}
89  
90  	@Override
91  	public Image popout() {
92  		
93  		return new Image(KSClientBundle.INSTANCE.popout());
94  	}
95  
96  	@Override
97  	public Image removeFormat() {
98  		
99  		return new Image(KSClientBundle.INSTANCE.removeFormat());
100 	}
101 
102 	@Override
103 	public Image removeLink() {
104 		
105 		return new Image(KSClientBundle.INSTANCE.removeLink());
106 	}
107 
108 	@Override
109 	public Image strikeThrough() {
110 		
111 		return new Image(KSClientBundle.INSTANCE.strikeThrough());
112 	}
113 
114 	@Override
115 	public Image subscript() {
116 		
117 		return new Image(KSClientBundle.INSTANCE.subscript());
118 	}
119 
120 	@Override
121 	public Image superscript() {
122 		
123 		return new Image(KSClientBundle.INSTANCE.superscript());
124 	}
125 
126 	@Override
127 	public Image ul() {
128 		
129 		return new Image(KSClientBundle.INSTANCE.ul());
130 	}
131 
132 	@Override
133 	public Image underline() {
134 		
135 		return new Image(KSClientBundle.INSTANCE.underline());
136 	}
137 
138 }