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 public class ELErrorsTagBeanInfo extends SimpleBeanInfo {
36 public PropertyDescriptor[] getPropertyDescriptors() {
37 ArrayList proplist = new ArrayList();
38
39 try {
40 proplist.add(new PropertyDescriptor("bundle", ELErrorsTag.class,
41 null, "setBundleExpr"));
42 } catch (IntrospectionException ex) {
43 }
44
45 try {
46 proplist.add(new PropertyDescriptor("footer", ELErrorsTag.class,
47 null, "setFooterExpr"));
48 } catch (IntrospectionException ex) {
49 }
50
51 try {
52 proplist.add(new PropertyDescriptor("header", ELErrorsTag.class,
53 null, "setHeaderExpr"));
54 } catch (IntrospectionException ex) {
55 }
56
57 try {
58 proplist.add(new PropertyDescriptor("locale", ELErrorsTag.class,
59 null, "setLocaleExpr"));
60 } catch (IntrospectionException ex) {
61 }
62
63 try {
64 proplist.add(new PropertyDescriptor("name", ELErrorsTag.class,
65 null, "setNameExpr"));
66 } catch (IntrospectionException ex) {
67 }
68
69 try {
70 proplist.add(new PropertyDescriptor("prefix", ELErrorsTag.class,
71 null, "setPrefixExpr"));
72 } catch (IntrospectionException ex) {
73 }
74
75 try {
76 proplist.add(new PropertyDescriptor("property", ELErrorsTag.class,
77 null, "setPropertyExpr"));
78 } catch (IntrospectionException ex) {
79 }
80
81 try {
82 proplist.add(new PropertyDescriptor("suffix", ELErrorsTag.class,
83 null, "setSuffixExpr"));
84 } catch (IntrospectionException ex) {
85 }
86
87 PropertyDescriptor[] result = new PropertyDescriptor[proplist.size()];
88
89 return ((PropertyDescriptor[]) proplist.toArray(result));
90 }
91 }