KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > strutsel > taglib > html > ELFrameTagBeanInfo


1 /*
2  * $Id: ELFrameTagBeanInfo.java 123585 2004-12-29 00:43:33Z martinc $
3  *
4  * Copyright 1999-2004 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */

18
19 package org.apache.strutsel.taglib.html;
20
21 import java.beans.PropertyDescriptor JavaDoc;
22 import java.beans.IntrospectionException JavaDoc;
23 import java.util.ArrayList JavaDoc;
24 import java.beans.SimpleBeanInfo JavaDoc;
25
26 /**
27  * This is the <code>BeanInfo</code> descriptor for the
28  * <code>org.apache.strutsel.taglib.html.ELFrameTag</code> class. It is needed
29  * to override the default mapping of custom tag attribute names to class
30  * attribute names.
31  *<p>
32  * This is because the value of the unevaluated EL expression has to be kept
33  * separately from the evaluated value, which is stored in the base class. This
34  * is related to the fact that the JSP compiler can choose to reuse different
35  * tag instances if they received the same original attribute values, and the
36  * JSP compiler can choose to not re-call the setter methods, because it can
37  * assume the same values are already set.
38  */

39 public class ELFrameTagBeanInfo extends SimpleBeanInfo JavaDoc
40 {
41     public PropertyDescriptor JavaDoc[] getPropertyDescriptors()
42     {
43         ArrayList JavaDoc proplist = new ArrayList JavaDoc();
44
45         try {
46             proplist.add(new PropertyDescriptor JavaDoc("action", ELFrameTag.class,
47                                                 null, "setActionExpr"));
48         } catch (IntrospectionException JavaDoc ex) {}
49         try {
50             proplist.add(new PropertyDescriptor JavaDoc("module", ELFrameTag.class,
51                                                 null, "setModuleExpr"));
52         } catch (IntrospectionException JavaDoc ex) {}
53         try {
54             proplist.add(new PropertyDescriptor JavaDoc("anchor", ELFrameTag.class,
55                                                 null, "setAnchorExpr"));
56         } catch (IntrospectionException JavaDoc ex) {}
57         try {
58             proplist.add(new PropertyDescriptor JavaDoc("bundle", ELFrameTag.class,
59                                                 null, "setBundleExpr"));
60         } catch (IntrospectionException JavaDoc ex) {}
61         try {
62             proplist.add(new PropertyDescriptor JavaDoc("forward", ELFrameTag.class,
63                                                 null, "setForwardExpr"));
64         } catch (IntrospectionException JavaDoc ex) {}
65         try {
66             proplist.add(new PropertyDescriptor JavaDoc("frameborder", ELFrameTag.class,
67                                                 null, "setFrameborderExpr"));
68         } catch (IntrospectionException JavaDoc ex) {}
69         try {
70             proplist.add(new PropertyDescriptor JavaDoc("frameName", ELFrameTag.class,
71                                                 null, "setFrameNameExpr"));
72         } catch (IntrospectionException JavaDoc ex) {}
73         try {
74             proplist.add(new PropertyDescriptor JavaDoc("href", ELFrameTag.class,
75                                                 null, "setHrefExpr"));
76         } catch (IntrospectionException JavaDoc ex) {}
77         try {
78             proplist.add(new PropertyDescriptor JavaDoc("longdesc", ELFrameTag.class,
79                                                 null, "setLongdescExpr"));
80         } catch (IntrospectionException JavaDoc ex) {}
81         try {
82             proplist.add(new PropertyDescriptor JavaDoc("marginheight", ELFrameTag.class,
83                                                 null, "setMarginheightExpr"));
84         } catch (IntrospectionException JavaDoc ex) {}
85         try {
86             proplist.add(new PropertyDescriptor JavaDoc("marginwidth", ELFrameTag.class,
87                                                 null, "setMarginwidthExpr"));
88         } catch (IntrospectionException JavaDoc ex) {}
89         try {
90             proplist.add(new PropertyDescriptor JavaDoc("name", ELFrameTag.class,
91                                                 null, "setNameExpr"));
92         } catch (IntrospectionException JavaDoc ex) {}
93         try {
94             proplist.add(new PropertyDescriptor JavaDoc("noresize", ELFrameTag.class,
95                                                 null, "setNoresizeExpr"));
96         } catch (IntrospectionException JavaDoc ex) {}
97         try {
98             proplist.add(new PropertyDescriptor JavaDoc("page", ELFrameTag.class,
99                                                 null, "setPageExpr"));
100         } catch (IntrospectionException JavaDoc ex) {}
101         try {
102             proplist.add(new PropertyDescriptor JavaDoc("paramId", ELFrameTag.class,
103                                                 null, "setParamIdExpr"));
104         } catch (IntrospectionException JavaDoc ex) {}
105         try {
106             proplist.add(new PropertyDescriptor JavaDoc("paramName", ELFrameTag.class,
107                                                 null, "setParamNameExpr"));
108         } catch (IntrospectionException JavaDoc ex) {}
109         try {
110             proplist.add(new PropertyDescriptor JavaDoc("paramProperty", ELFrameTag.class,
111                                                 null, "setParamPropertyExpr"));
112         } catch (IntrospectionException JavaDoc ex) {}
113         try {
114             proplist.add(new PropertyDescriptor JavaDoc("paramScope", ELFrameTag.class,
115                                                 null, "setParamScopeExpr"));
116         } catch (IntrospectionException JavaDoc ex) {}
117         try {
118             proplist.add(new PropertyDescriptor JavaDoc("property", ELFrameTag.class,
119                                                 null, "setPropertyExpr"));
120         } catch (IntrospectionException JavaDoc ex) {}
121         try {
122             proplist.add(new PropertyDescriptor JavaDoc("scope", ELFrameTag.class,
123                                                 null, "setScopeExpr"));
124         } catch (IntrospectionException JavaDoc ex) {}
125         try {
126             proplist.add(new PropertyDescriptor JavaDoc("scrolling", ELFrameTag.class,
127                                                 null, "setScrollingExpr"));
128         } catch (IntrospectionException JavaDoc ex) {}
129         try {
130             proplist.add(new PropertyDescriptor JavaDoc("style", ELFrameTag.class,
131                                                 null, "setStyleExpr"));
132         } catch (IntrospectionException JavaDoc ex) {}
133         try {
134             proplist.add(new PropertyDescriptor JavaDoc("styleClass", ELFrameTag.class,
135                                                 null, "setStyleClassExpr"));
136         } catch (IntrospectionException JavaDoc ex) {}
137         try {
138             proplist.add(new PropertyDescriptor JavaDoc("styleId", ELFrameTag.class,
139                                                 null, "setStyleIdExpr"));
140         } catch (IntrospectionException JavaDoc ex) {}
141         try {
142             proplist.add(new PropertyDescriptor JavaDoc("title", ELFrameTag.class,
143                                                 null, "setTitleExpr"));
144         } catch (IntrospectionException JavaDoc ex) {}
145         try {
146             proplist.add(new PropertyDescriptor JavaDoc("titleKey", ELFrameTag.class,
147                                                 null, "setTitleKeyExpr"));
148         } catch (IntrospectionException JavaDoc ex) {}
149         try {
150             proplist.add(new PropertyDescriptor JavaDoc("transaction", ELFrameTag.class,
151                                                 null, "setTransactionExpr"));
152         } catch (IntrospectionException JavaDoc ex) {}
153         
154         PropertyDescriptor JavaDoc[] result =
155             new PropertyDescriptor JavaDoc[proplist.size()];
156         return ((PropertyDescriptor JavaDoc[]) proplist.toArray(result));
157     }
158 }
159
Popular Tags