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 ELRewriteTagBeanInfo extends SimpleBeanInfo {
41 public PropertyDescriptor[] getPropertyDescriptors() {
42 ArrayList proplist = new ArrayList();
43
44 try {
45 proplist.add(new PropertyDescriptor("action", ELRewriteTag.class,
46 null, "setActionExpr"));
47 } catch (IntrospectionException ex) {
48 }
49
50 try {
51 proplist.add(new PropertyDescriptor("module", ELRewriteTag.class,
52 null, "setModuleExpr"));
53 } catch (IntrospectionException ex) {
54 }
55
56 try {
57 proplist.add(new PropertyDescriptor("anchor", ELRewriteTag.class,
58 null, "setAnchorExpr"));
59 } catch (IntrospectionException ex) {
60 }
61
62 try {
63 proplist.add(new PropertyDescriptor("forward", ELRewriteTag.class,
64 null, "setForwardExpr"));
65 } catch (IntrospectionException ex) {
66 }
67
68 try {
69 proplist.add(new PropertyDescriptor("href", ELRewriteTag.class,
70 null, "setHrefExpr"));
71 } catch (IntrospectionException ex) {
72 }
73
74 try {
75 proplist.add(new PropertyDescriptor("name", ELRewriteTag.class,
76 null, "setNameExpr"));
77 } catch (IntrospectionException ex) {
78 }
79
80 try {
81 proplist.add(new PropertyDescriptor("page", ELRewriteTag.class,
82 null, "setPageExpr"));
83 } catch (IntrospectionException ex) {
84 }
85
86 try {
87 proplist.add(new PropertyDescriptor("paramId", ELRewriteTag.class,
88 null, "setParamIdExpr"));
89 } catch (IntrospectionException ex) {
90 }
91
92 try {
93 proplist.add(new PropertyDescriptor("paramName",
94 ELRewriteTag.class, null, "setParamNameExpr"));
95 } catch (IntrospectionException ex) {
96 }
97
98 try {
99 proplist.add(new PropertyDescriptor("paramProperty",
100 ELRewriteTag.class, null, "setParamPropertyExpr"));
101 } catch (IntrospectionException ex) {
102 }
103
104 try {
105 proplist.add(new PropertyDescriptor("paramScope",
106 ELRewriteTag.class, null, "setParamScopeExpr"));
107 } catch (IntrospectionException ex) {
108 }
109
110 try {
111 proplist.add(new PropertyDescriptor("property", ELRewriteTag.class,
112 null, "setPropertyExpr"));
113 } catch (IntrospectionException ex) {
114 }
115
116 try {
117 proplist.add(new PropertyDescriptor("scope", ELRewriteTag.class,
118 null, "setScopeExpr"));
119 } catch (IntrospectionException ex) {
120 }
121
122 try {
123 proplist.add(new PropertyDescriptor("transaction",
124 ELRewriteTag.class, null, "setTransactionExpr"));
125 } catch (IntrospectionException ex) {
126 }
127
128 try {
129 proplist.add(new PropertyDescriptor("useLocalEncoding",
130 ELRewriteTag.class, null, "setUseLocalEncodingExpr"));
131 } catch (IntrospectionException ex) {
132 }
133
134 PropertyDescriptor[] result = new PropertyDescriptor[proplist.size()];
135
136 return ((PropertyDescriptor[]) proplist.toArray(result));
137 }
138 }