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.logic;
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.bean.ELIterateTag</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 ELIterateTagBeanInfo extends SimpleBeanInfo {
41 public PropertyDescriptor[] getPropertyDescriptors() {
42 ArrayList proplist = new ArrayList();
43
44 try {
45 proplist.add(new PropertyDescriptor("collection",
46 ELIterateTag.class, null, "setCollectionExpr"));
47 } catch (IntrospectionException ex) {
48 }
49
50 try {
51 proplist.add(new PropertyDescriptor("id", ELIterateTag.class, null,
52 "setIdExpr"));
53 } catch (IntrospectionException ex) {
54 }
55
56 try {
57 proplist.add(new PropertyDescriptor("indexId", ELIterateTag.class,
58 null, "setIndexIdExpr"));
59 } catch (IntrospectionException ex) {
60 }
61
62 try {
63 proplist.add(new PropertyDescriptor("length", ELIterateTag.class,
64 null, "setLengthExpr"));
65 } catch (IntrospectionException ex) {
66 }
67
68 try {
69 proplist.add(new PropertyDescriptor("name", ELIterateTag.class,
70 null, "setNameExpr"));
71 } catch (IntrospectionException ex) {
72 }
73
74 try {
75 proplist.add(new PropertyDescriptor("offset", ELIterateTag.class,
76 null, "setOffsetExpr"));
77 } catch (IntrospectionException ex) {
78 }
79
80 try {
81 proplist.add(new PropertyDescriptor("property", ELIterateTag.class,
82 null, "setPropertyExpr"));
83 } catch (IntrospectionException ex) {
84 }
85
86 try {
87 proplist.add(new PropertyDescriptor("scope", ELIterateTag.class,
88 null, "setScopeExpr"));
89 } catch (IntrospectionException ex) {
90 }
91
92 try {
93 proplist.add(new PropertyDescriptor("type", ELIterateTag.class,
94 null, "setTypeExpr"));
95 } catch (IntrospectionException ex) {
96 }
97
98 PropertyDescriptor[] result = new PropertyDescriptor[proplist.size()];
99
100 return ((PropertyDescriptor[]) proplist.toArray(result));
101 }
102 }