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.tiles;
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.tiles.ELUseAttributeTag</code> class. It
32 * is needed to override the default mapping of custom tag attribute names to
33 * class attribute names.
34 */
35 public class ELUseAttributeTagBeanInfo extends SimpleBeanInfo {
36 public PropertyDescriptor[] getPropertyDescriptors() {
37 ArrayList proplist = new ArrayList();
38
39 try {
40 proplist.add(new PropertyDescriptor("id", ELUseAttributeTag.class,
41 null, "setIdExpr"));
42 } catch (IntrospectionException ex) {
43 }
44
45 try {
46 proplist.add(new PropertyDescriptor("classname",
47 ELUseAttributeTag.class, null, "setClassnameExpr"));
48 } catch (IntrospectionException ex) {
49 }
50
51 try {
52 proplist.add(new PropertyDescriptor("scope",
53 ELUseAttributeTag.class, null, "setScopeExpr"));
54 } catch (IntrospectionException ex) {
55 }
56
57 try {
58 proplist.add(new PropertyDescriptor("name",
59 ELUseAttributeTag.class, null, "setNameExpr"));
60 } catch (IntrospectionException ex) {
61 }
62
63 try {
64 proplist.add(new PropertyDescriptor("ignore",
65 ELUseAttributeTag.class, null, "setIgnoreExpr"));
66 } catch (IntrospectionException ex) {
67 }
68
69 PropertyDescriptor[] result = new PropertyDescriptor[proplist.size()];
70
71 return ((PropertyDescriptor[]) proplist.toArray(result));
72 }
73 }