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
31
32
33
34
35
36
37
38
39
40 public class ELOptionsCollectionTagBeanInfo extends SimpleBeanInfo {
41 public PropertyDescriptor[] getPropertyDescriptors() {
42 ArrayList proplist = new ArrayList();
43
44 try {
45 proplist.add(new PropertyDescriptor("filter",
46 ELOptionsCollectionTag.class, null, "setFilterExpr"));
47 } catch (IntrospectionException ex) {
48 }
49
50 try {
51 proplist.add(new PropertyDescriptor("label",
52 ELOptionsCollectionTag.class, null, "setLabelExpr"));
53 } catch (IntrospectionException ex) {
54 }
55
56 try {
57 proplist.add(new PropertyDescriptor("name",
58 ELOptionsCollectionTag.class, null, "setNameExpr"));
59 } catch (IntrospectionException ex) {
60 }
61
62 try {
63 proplist.add(new PropertyDescriptor("property",
64 ELOptionsCollectionTag.class, null, "setPropertyExpr"));
65 } catch (IntrospectionException ex) {
66 }
67
68 try {
69 proplist.add(new PropertyDescriptor("style",
70 ELOptionsCollectionTag.class, null, "setStyleExpr"));
71 } catch (IntrospectionException ex) {
72 }
73
74 try {
75 proplist.add(new PropertyDescriptor("styleClass",
76 ELOptionsCollectionTag.class, null, "setStyleClassExpr"));
77 } catch (IntrospectionException ex) {
78 }
79
80 try {
81 proplist.add(new PropertyDescriptor("value",
82 ELOptionsCollectionTag.class, null, "setValueExpr"));
83 } catch (IntrospectionException ex) {
84 }
85
86 PropertyDescriptor[] result = new PropertyDescriptor[proplist.size()];
87
88 return ((PropertyDescriptor[]) proplist.toArray(result));
89 }
90 }