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