1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.apache.strutsel.taglib.html;
22
23 import java.beans.IntrospectionException;
24 import java.beans.PropertyDescriptor;
25 import java.beans.SimpleBeanInfo;
26
27 import java.util.ArrayList;
28
29 /**
30 * This is the <code>BeanInfo</code> descriptor for the
31 * <code>org.apache.strutsel.taglib.html.ELSelectTag</code> class. It is
32 * needed to override the default mapping of custom tag attribute names to
33 * class attribute names. <p> This is because the value of the unevaluated EL
34 * expression has to be kept separately from the evaluated value, which is
35 * stored in the base class. This is related to the fact that the JSP compiler
36 * can choose to reuse different tag instances if they received the same
37 * original attribute values, and the JSP compiler can choose to not re-call
38 * the setter methods, because it can assume the same values are already set.
39 */
40 public class ELSelectTagBeanInfo extends SimpleBeanInfo {
41 public PropertyDescriptor[] getPropertyDescriptors() {
42 ArrayList proplist = new ArrayList();
43
44 try {
45 proplist.add(new PropertyDescriptor("alt", ELSelectTag.class, null,
46 "setAltExpr"));
47 } catch (IntrospectionException ex) {
48 }
49
50 try {
51 proplist.add(new PropertyDescriptor("altKey", ELSelectTag.class,
52 null, "setAltKeyExpr"));
53 } catch (IntrospectionException ex) {
54 }
55
56 try {
57 proplist.add(new PropertyDescriptor("bundle", ELSelectTag.class,
58 null, "setBundleExpr"));
59 } catch (IntrospectionException ex) {
60 }
61
62 try {
63 proplist.add(new PropertyDescriptor("dir", ELSelectTag.class,
64 null, "setDirExpr"));
65 } catch (IntrospectionException ex) {
66 }
67
68 try {
69 proplist.add(new PropertyDescriptor("disabled", ELSelectTag.class,
70 null, "setDisabledExpr"));
71 } catch (IntrospectionException ex) {
72 }
73
74 try {
75 proplist.add(new PropertyDescriptor("errorKey", ELSelectTag.class,
76 null, "setErrorKeyExpr"));
77 } catch (IntrospectionException ex) {
78 }
79
80 try {
81 proplist.add(new PropertyDescriptor("errorStyle",
82 ELSelectTag.class, null, "setErrorStyleExpr"));
83 } catch (IntrospectionException ex) {
84 }
85
86 try {
87 proplist.add(new PropertyDescriptor("errorStyleClass",
88 ELSelectTag.class, null, "setErrorStyleClassExpr"));
89 } catch (IntrospectionException ex) {
90 }
91
92 try {
93 proplist.add(new PropertyDescriptor("errorStyleId",
94 ELSelectTag.class, null, "setErrorStyleIdExpr"));
95 } catch (IntrospectionException ex) {
96 }
97
98 try {
99 proplist.add(new PropertyDescriptor("indexed", ELSelectTag.class,
100 null, "setIndexedExpr"));
101 } catch (IntrospectionException ex) {
102 }
103
104 try {
105 proplist.add(new PropertyDescriptor("lang", ELSelectTag.class,
106 null, "setLangExpr"));
107 } catch (IntrospectionException ex) {
108 }
109
110 try {
111 proplist.add(new PropertyDescriptor("multiple", ELSelectTag.class,
112 null, "setMultipleExpr"));
113 } catch (IntrospectionException ex) {
114 }
115
116 try {
117 proplist.add(new PropertyDescriptor("name", ELSelectTag.class,
118 null, "setNameExpr"));
119 } catch (IntrospectionException ex) {
120 }
121
122 try {
123 proplist.add(new PropertyDescriptor("onblur", ELSelectTag.class,
124 null, "setOnblurExpr"));
125 } catch (IntrospectionException ex) {
126 }
127
128 try {
129 proplist.add(new PropertyDescriptor("onchange", ELSelectTag.class,
130 null, "setOnchangeExpr"));
131 } catch (IntrospectionException ex) {
132 }
133
134 try {
135 proplist.add(new PropertyDescriptor("onclick", ELSelectTag.class,
136 null, "setOnclickExpr"));
137 } catch (IntrospectionException ex) {
138 }
139
140 try {
141 proplist.add(new PropertyDescriptor("ondblclick",
142 ELSelectTag.class, null, "setOndblclickExpr"));
143 } catch (IntrospectionException ex) {
144 }
145
146 try {
147 proplist.add(new PropertyDescriptor("onfocus", ELSelectTag.class,
148 null, "setOnfocusExpr"));
149 } catch (IntrospectionException ex) {
150 }
151
152 try {
153 proplist.add(new PropertyDescriptor("onkeydown", ELSelectTag.class,
154 null, "setOnkeydownExpr"));
155 } catch (IntrospectionException ex) {
156 }
157
158 try {
159 proplist.add(new PropertyDescriptor("onkeypress",
160 ELSelectTag.class, null, "setOnkeypressExpr"));
161 } catch (IntrospectionException ex) {
162 }
163
164 try {
165 proplist.add(new PropertyDescriptor("onkeyup", ELSelectTag.class,
166 null, "setOnkeyupExpr"));
167 } catch (IntrospectionException ex) {
168 }
169
170 try {
171 proplist.add(new PropertyDescriptor("onmousedown",
172 ELSelectTag.class, null, "setOnmousedownExpr"));
173 } catch (IntrospectionException ex) {
174 }
175
176 try {
177 proplist.add(new PropertyDescriptor("onmousemove",
178 ELSelectTag.class, null, "setOnmousemoveExpr"));
179 } catch (IntrospectionException ex) {
180 }
181
182 try {
183 proplist.add(new PropertyDescriptor("onmouseout",
184 ELSelectTag.class, null, "setOnmouseoutExpr"));
185 } catch (IntrospectionException ex) {
186 }
187
188 try {
189 proplist.add(new PropertyDescriptor("onmouseover",
190 ELSelectTag.class, null, "setOnmouseoverExpr"));
191 } catch (IntrospectionException ex) {
192 }
193
194 try {
195 proplist.add(new PropertyDescriptor("onmouseup", ELSelectTag.class,
196 null, "setOnmouseupExpr"));
197 } catch (IntrospectionException ex) {
198 }
199
200 try {
201 proplist.add(new PropertyDescriptor("property", ELSelectTag.class,
202 null, "setPropertyExpr"));
203 } catch (IntrospectionException ex) {
204 }
205
206 try {
207 proplist.add(new PropertyDescriptor("size", ELSelectTag.class,
208 null, "setSizeExpr"));
209 } catch (IntrospectionException ex) {
210 }
211
212 try {
213 proplist.add(new PropertyDescriptor("style", ELSelectTag.class,
214 null, "setStyleExpr"));
215 } catch (IntrospectionException ex) {
216 }
217
218 try {
219 proplist.add(new PropertyDescriptor("styleClass",
220 ELSelectTag.class, null, "setStyleClassExpr"));
221 } catch (IntrospectionException ex) {
222 }
223
224 try {
225 proplist.add(new PropertyDescriptor("styleId", ELSelectTag.class,
226 null, "setStyleIdExpr"));
227 } catch (IntrospectionException ex) {
228 }
229
230 try {
231 proplist.add(new PropertyDescriptor("tabindex", ELSelectTag.class,
232 null, "setTabindexExpr"));
233 } catch (IntrospectionException ex) {
234 }
235
236 try {
237 proplist.add(new PropertyDescriptor("title", ELSelectTag.class,
238 null, "setTitleExpr"));
239 } catch (IntrospectionException ex) {
240 }
241
242 try {
243 proplist.add(new PropertyDescriptor("titleKey", ELSelectTag.class,
244 null, "setTitleKeyExpr"));
245 } catch (IntrospectionException ex) {
246 }
247
248 try {
249 proplist.add(new PropertyDescriptor("value", ELSelectTag.class,
250 null, "setValueExpr"));
251 } catch (IntrospectionException ex) {
252 }
253
254 PropertyDescriptor[] result = new PropertyDescriptor[proplist.size()];
255
256 return ((PropertyDescriptor[]) proplist.toArray(result));
257 }
258 }