Source Code Cross Referenced for ELRewriteTag.java in  » Web-Framework » struts-1.3.8 » org » apache » strutsel » taglib » html » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Framework » struts 1.3.8 » org.apache.strutsel.taglib.html 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * $Id: ELRewriteTag.java 471754 2006-11-06 14:55:09Z husted $
003:         *
004:         * Licensed to the Apache Software Foundation (ASF) under one
005:         * or more contributor license agreements.  See the NOTICE file
006:         * distributed with this work for additional information
007:         * regarding copyright ownership.  The ASF licenses this file
008:         * to you under the Apache License, Version 2.0 (the
009:         * "License"); you may not use this file except in compliance
010:         * with the License.  You may obtain a copy of the License at
011:         *
012:         *  http://www.apache.org/licenses/LICENSE-2.0
013:         *
014:         * Unless required by applicable law or agreed to in writing,
015:         * software distributed under the License is distributed on an
016:         * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017:         * KIND, either express or implied.  See the License for the
018:         * specific language governing permissions and limitations
019:         * under the License.
020:         */
021:        package org.apache.strutsel.taglib.html;
022:
023:        import org.apache.struts.taglib.html.RewriteTag;
024:        import org.apache.strutsel.taglib.utils.EvalHelper;
025:
026:        import javax.servlet.jsp.JspException;
027:
028:        /**
029:         * Generate a URL-encoded URI as a string. <p> This class is a subclass of the
030:         * class <code>org.apache.struts.taglib.html.RewriteTag</code> which provides
031:         * most of the described functionality.  This subclass allows all attribute
032:         * values to be specified as expressions utilizing the JavaServer Pages
033:         * Standard Library expression language.
034:         *
035:         * @version $Rev: 471754 $
036:         */
037:        public class ELRewriteTag extends RewriteTag {
038:            /**
039:             * Instance variable mapped to "action" tag attribute. (Mapping set in
040:             * associated BeanInfo class.)
041:             */
042:            private String actionExpr;
043:
044:            /**
045:             * Instance variable mapped to "module" tag attribute. (Mapping set in
046:             * associated BeanInfo class.)
047:             */
048:            private String moduleExpr;
049:
050:            /**
051:             * Instance variable mapped to "anchor" tag attribute. (Mapping set in
052:             * associated BeanInfo class.)
053:             */
054:            private String anchorExpr;
055:
056:            /**
057:             * Instance variable mapped to "forward" tag attribute. (Mapping set in
058:             * associated BeanInfo class.)
059:             */
060:            private String forwardExpr;
061:
062:            /**
063:             * Instance variable mapped to "href" tag attribute. (Mapping set in
064:             * associated BeanInfo class.)
065:             */
066:            private String hrefExpr;
067:
068:            /**
069:             * Instance variable mapped to "name" tag attribute. (Mapping set in
070:             * associated BeanInfo class.)
071:             */
072:            private String nameExpr;
073:
074:            /**
075:             * Instance variable mapped to "page" tag attribute. (Mapping set in
076:             * associated BeanInfo class.)
077:             */
078:            private String pageExpr;
079:
080:            /**
081:             * Instance variable mapped to "paramId" tag attribute. (Mapping set in
082:             * associated BeanInfo class.)
083:             */
084:            private String paramIdExpr;
085:
086:            /**
087:             * Instance variable mapped to "paramName" tag attribute. (Mapping set in
088:             * associated BeanInfo class.)
089:             */
090:            private String paramNameExpr;
091:
092:            /**
093:             * Instance variable mapped to "paramProperty" tag attribute. (Mapping set
094:             * in associated BeanInfo class.)
095:             */
096:            private String paramPropertyExpr;
097:
098:            /**
099:             * Instance variable mapped to "paramScope" tag attribute. (Mapping set in
100:             * associated BeanInfo class.)
101:             */
102:            private String paramScopeExpr;
103:
104:            /**
105:             * Instance variable mapped to "property" tag attribute. (Mapping set in
106:             * associated BeanInfo class.)
107:             */
108:            private String propertyExpr;
109:
110:            /**
111:             * Instance variable mapped to "scope" tag attribute. (Mapping set in
112:             * associated BeanInfo class.)
113:             */
114:            private String scopeExpr;
115:
116:            /**
117:             * Instance variable mapped to "transaction" tag attribute. (Mapping set
118:             * in associated BeanInfo class.)
119:             */
120:            private String transactionExpr;
121:
122:            /**
123:             * Instance variable mapped to "useLocalEncoding" tag attribute. (Mapping
124:             * set in associated BeanInfo class.)
125:             */
126:            private String useLocalEncodingExpr;
127:
128:            /**
129:             * Getter method for "action" tag attribute. (Mapping set in associated
130:             * BeanInfo class.)
131:             */
132:            public String getActionExpr() {
133:                return (actionExpr);
134:            }
135:
136:            /**
137:             * Getter method for "module" tag attribute. (Mapping set in associated
138:             * BeanInfo class.)
139:             */
140:            public String getModuleExpr() {
141:                return (moduleExpr);
142:            }
143:
144:            /**
145:             * Getter method for "anchor" tag attribute. (Mapping set in associated
146:             * BeanInfo class.)
147:             */
148:            public String getAnchorExpr() {
149:                return (anchorExpr);
150:            }
151:
152:            /**
153:             * Getter method for "forward" tag attribute. (Mapping set in associated
154:             * BeanInfo class.)
155:             */
156:            public String getForwardExpr() {
157:                return (forwardExpr);
158:            }
159:
160:            /**
161:             * Getter method for "href" tag attribute. (Mapping set in associated
162:             * BeanInfo class.)
163:             */
164:            public String getHrefExpr() {
165:                return (hrefExpr);
166:            }
167:
168:            /**
169:             * Getter method for "name" tag attribute. (Mapping set in associated
170:             * BeanInfo class.)
171:             */
172:            public String getNameExpr() {
173:                return (nameExpr);
174:            }
175:
176:            /**
177:             * Getter method for "page" tag attribute. (Mapping set in associated
178:             * BeanInfo class.)
179:             */
180:            public String getPageExpr() {
181:                return (pageExpr);
182:            }
183:
184:            /**
185:             * Getter method for "paramId" tag attribute. (Mapping set in associated
186:             * BeanInfo class.)
187:             */
188:            public String getParamIdExpr() {
189:                return (paramIdExpr);
190:            }
191:
192:            /**
193:             * Getter method for "paramName" tag attribute. (Mapping set in associated
194:             * BeanInfo class.)
195:             */
196:            public String getParamNameExpr() {
197:                return (paramNameExpr);
198:            }
199:
200:            /**
201:             * Getter method for "paramProperty" tag attribute. (Mapping set in
202:             * associated BeanInfo class.)
203:             */
204:            public String getParamPropertyExpr() {
205:                return (paramPropertyExpr);
206:            }
207:
208:            /**
209:             * Getter method for "paramScope" tag attribute. (Mapping set in
210:             * associated BeanInfo class.)
211:             */
212:            public String getParamScopeExpr() {
213:                return (paramScopeExpr);
214:            }
215:
216:            /**
217:             * Getter method for "property" tag attribute. (Mapping set in associated
218:             * BeanInfo class.)
219:             */
220:            public String getPropertyExpr() {
221:                return (propertyExpr);
222:            }
223:
224:            /**
225:             * Getter method for "scope" tag attribute. (Mapping set in associated
226:             * BeanInfo class.)
227:             */
228:            public String getScopeExpr() {
229:                return (scopeExpr);
230:            }
231:
232:            /**
233:             * Getter method for "transaction" tag attribute. (Mapping set in
234:             * associated BeanInfo class.)
235:             */
236:            public String getTransactionExpr() {
237:                return (transactionExpr);
238:            }
239:
240:            /**
241:             * Getter method for "useLocalEncoding" tag attribute. (Mapping set in
242:             * associated BeanInfo class.)
243:             */
244:            public String getUseLocalEncodingExpr() {
245:                return (useLocalEncodingExpr);
246:            }
247:
248:            /**
249:             * Setter method for "action" tag attribute. (Mapping set in associated
250:             * BeanInfo class.)
251:             */
252:            public void setActionExpr(String actionExpr) {
253:                this .actionExpr = actionExpr;
254:            }
255:
256:            /**
257:             * Setter method for "module" tag attribute. (Mapping set in associated
258:             * BeanInfo class.)
259:             */
260:            public void setModuleExpr(String moduleExpr) {
261:                this .moduleExpr = moduleExpr;
262:            }
263:
264:            /**
265:             * Setter method for "anchor" tag attribute. (Mapping set in associated
266:             * BeanInfo class.)
267:             */
268:            public void setAnchorExpr(String anchorExpr) {
269:                this .anchorExpr = anchorExpr;
270:            }
271:
272:            /**
273:             * Setter method for "forward" tag attribute. (Mapping set in associated
274:             * BeanInfo class.)
275:             */
276:            public void setForwardExpr(String forwardExpr) {
277:                this .forwardExpr = forwardExpr;
278:            }
279:
280:            /**
281:             * Setter method for "href" tag attribute. (Mapping set in associated
282:             * BeanInfo class.)
283:             */
284:            public void setHrefExpr(String hrefExpr) {
285:                this .hrefExpr = hrefExpr;
286:            }
287:
288:            /**
289:             * Setter method for "name" tag attribute. (Mapping set in associated
290:             * BeanInfo class.)
291:             */
292:            public void setNameExpr(String nameExpr) {
293:                this .nameExpr = nameExpr;
294:            }
295:
296:            /**
297:             * Setter method for "page" tag attribute. (Mapping set in associated
298:             * BeanInfo class.)
299:             */
300:            public void setPageExpr(String pageExpr) {
301:                this .pageExpr = pageExpr;
302:            }
303:
304:            /**
305:             * Setter method for "paramId" tag attribute. (Mapping set in associated
306:             * BeanInfo class.)
307:             */
308:            public void setParamIdExpr(String paramIdExpr) {
309:                this .paramIdExpr = paramIdExpr;
310:            }
311:
312:            /**
313:             * Setter method for "paramName" tag attribute. (Mapping set in associated
314:             * BeanInfo class.)
315:             */
316:            public void setParamNameExpr(String paramNameExpr) {
317:                this .paramNameExpr = paramNameExpr;
318:            }
319:
320:            /**
321:             * Setter method for "paramProperty" tag attribute. (Mapping set in
322:             * associated BeanInfo class.)
323:             */
324:            public void setParamPropertyExpr(String paramPropertyExpr) {
325:                this .paramPropertyExpr = paramPropertyExpr;
326:            }
327:
328:            /**
329:             * Setter method for "paramScope" tag attribute. (Mapping set in
330:             * associated BeanInfo class.)
331:             */
332:            public void setParamScopeExpr(String paramScopeExpr) {
333:                this .paramScopeExpr = paramScopeExpr;
334:            }
335:
336:            /**
337:             * Setter method for "property" tag attribute. (Mapping set in associated
338:             * BeanInfo class.)
339:             */
340:            public void setPropertyExpr(String propertyExpr) {
341:                this .propertyExpr = propertyExpr;
342:            }
343:
344:            /**
345:             * Setter method for "scope" tag attribute. (Mapping set in associated
346:             * BeanInfo class.)
347:             */
348:            public void setScopeExpr(String scopeExpr) {
349:                this .scopeExpr = scopeExpr;
350:            }
351:
352:            /**
353:             * Setter method for "transaction" tag attribute. (Mapping set in
354:             * associated BeanInfo class.)
355:             */
356:            public void setTransactionExpr(String transactionExpr) {
357:                this .transactionExpr = transactionExpr;
358:            }
359:
360:            /**
361:             * Setter method for "useLocalEncoding" tag attribute. (Mapping set in
362:             * associated BeanInfo class.)
363:             */
364:            public void setUseLocalEncodingExpr(String useLocalEncodingExpr) {
365:                this .useLocalEncodingExpr = useLocalEncodingExpr;
366:            }
367:
368:            /**
369:             * Resets attribute values for tag reuse.
370:             */
371:            public void release() {
372:                super .release();
373:                setActionExpr(null);
374:                setModuleExpr(null);
375:                setAnchorExpr(null);
376:                setForwardExpr(null);
377:                setHrefExpr(null);
378:                setNameExpr(null);
379:                setPageExpr(null);
380:                setParamIdExpr(null);
381:                setParamNameExpr(null);
382:                setParamPropertyExpr(null);
383:                setParamScopeExpr(null);
384:                setPropertyExpr(null);
385:                setScopeExpr(null);
386:                setTransactionExpr(null);
387:                setUseLocalEncodingExpr(null);
388:            }
389:
390:            /**
391:             * Process the start tag.
392:             *
393:             * @throws JspException if a JSP exception has occurred
394:             */
395:            public int doStartTag() throws JspException {
396:                evaluateExpressions();
397:
398:                return (super .doStartTag());
399:            }
400:
401:            /**
402:             * Processes all attribute values which use the JSTL expression evaluation
403:             * engine to determine their values.
404:             *
405:             * @throws JspException if a JSP exception has occurred
406:             */
407:            private void evaluateExpressions() throws JspException {
408:                String string = null;
409:                Boolean bool = null;
410:
411:                if ((string = EvalHelper.evalString("action", getActionExpr(),
412:                        this , pageContext)) != null) {
413:                    setAction(string);
414:                }
415:
416:                if ((string = EvalHelper.evalString("module", getModuleExpr(),
417:                        this , pageContext)) != null) {
418:                    setModule(string);
419:                }
420:
421:                if ((string = EvalHelper.evalString("anchor", getAnchorExpr(),
422:                        this , pageContext)) != null) {
423:                    setAnchor(string);
424:                }
425:
426:                if ((string = EvalHelper.evalString("forward",
427:                        getForwardExpr(), this , pageContext)) != null) {
428:                    setForward(string);
429:                }
430:
431:                if ((string = EvalHelper.evalString("href", getHrefExpr(),
432:                        this , pageContext)) != null) {
433:                    setHref(string);
434:                }
435:
436:                if ((string = EvalHelper.evalString("name", getNameExpr(),
437:                        this , pageContext)) != null) {
438:                    setName(string);
439:                }
440:
441:                if ((string = EvalHelper.evalString("page", getPageExpr(),
442:                        this , pageContext)) != null) {
443:                    setPage(string);
444:                }
445:
446:                if ((string = EvalHelper.evalString("paramId",
447:                        getParamIdExpr(), this , pageContext)) != null) {
448:                    setParamId(string);
449:                }
450:
451:                if ((string = EvalHelper.evalString("paramName",
452:                        getParamNameExpr(), this , pageContext)) != null) {
453:                    setParamName(string);
454:                }
455:
456:                if ((string = EvalHelper.evalString("paramProperty",
457:                        getParamPropertyExpr(), this , pageContext)) != null) {
458:                    setParamProperty(string);
459:                }
460:
461:                if ((string = EvalHelper.evalString("paramScope",
462:                        getParamScopeExpr(), this , pageContext)) != null) {
463:                    setParamScope(string);
464:                }
465:
466:                if ((string = EvalHelper.evalString("property",
467:                        getPropertyExpr(), this , pageContext)) != null) {
468:                    setProperty(string);
469:                }
470:
471:                if ((string = EvalHelper.evalString("scope", getScopeExpr(),
472:                        this , pageContext)) != null) {
473:                    setScope(string);
474:                }
475:
476:                if ((bool = EvalHelper.evalBoolean("transaction",
477:                        getTransactionExpr(), this , pageContext)) != null) {
478:                    setTransaction(bool.booleanValue());
479:                }
480:
481:                if ((bool = EvalHelper.evalBoolean("useLocalEncoding",
482:                        getUseLocalEncodingExpr(), this, pageContext)) != null) {
483:                    setUseLocalEncoding(bool.booleanValue());
484:                }
485:            }
486:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.