Source Code Cross Referenced for ExpressionEvaluator.java in  » EJB-Server-GlassFish » servlet » javax » servlet » jsp » el » 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 » EJB Server GlassFish » servlet » javax.servlet.jsp.el 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003:         * 
004:         * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005:         * 
006:         * Portions Copyright Apache Software Foundation.
007:         * 
008:         * The contents of this file are subject to the terms of either the GNU
009:         * General Public License Version 2 only ("GPL") or the Common Development
010:         * and Distribution License("CDDL") (collectively, the "License").  You
011:         * may not use this file except in compliance with the License. You can obtain
012:         * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
013:         * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
014:         * language governing permissions and limitations under the License.
015:         * 
016:         * When distributing the software, include this License Header Notice in each
017:         * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
018:         * Sun designates this particular file as subject to the "Classpath" exception
019:         * as provided by Sun in the GPL Version 2 section of the License file that
020:         * accompanied this code.  If applicable, add the following below the License
021:         * Header, with the fields enclosed by brackets [] replaced by your own
022:         * identifying information: "Portions Copyrighted [year]
023:         * [name of copyright owner]"
024:         * 
025:         * Contributor(s):
026:         * 
027:         * If you wish your version of this file to be governed by only the CDDL or
028:         * only the GPL Version 2, indicate your decision by adding "[Contributor]
029:         * elects to include this software in this distribution under the [CDDL or GPL
030:         * Version 2] license."  If you don't indicate a single choice of license, a
031:         * recipient has the option to distribute your version of this file under
032:         * either the CDDL, the GPL Version 2 or to extend the choice of license to
033:         * its licensees as provided above.  However, if you add GPL Version 2 code
034:         * and therefore, elected the GPL Version 2 license, then the option applies
035:         * only if the new code is made subject to such option by the copyright
036:         * holder.
037:         */
038:
039:        package javax.servlet.jsp.el;
040:
041:        /**
042:         * <p>The abstract base class for an expression-language evaluator.
043:         * Classes that implement an expression language expose their functionality
044:         * via this abstract class.</p>
045:         *
046:         * <p>An instance of the ExpressionEvaluator can be obtained via the 
047:         * JspContext / PageContext</p>
048:         *
049:         * <p>The parseExpression() and evaluate() methods must be thread-safe.  
050:         * That is, multiple threads may call these methods on the same 
051:         * ExpressionEvaluator object simultaneously.  Implementations should 
052:         * synchronize access if they depend on transient state.  Implementations 
053:         * should not, however, assume that only one object of each 
054:         * ExpressionEvaluator type will be instantiated; global caching should 
055:         * therefore be static.</p>
056:         *
057:         * <p>Only a single EL expression, starting with '${' and ending with
058:         * '}', can be parsed or evaluated at a time.  EL expressions 
059:         * cannot be mixed with static text.  For example, attempting to 
060:         * parse or evaluate "<code>abc${1+1}def${1+1}ghi</code>" or even
061:         * "<code>${1+1}${1+1}</code>" will cause an <code>ELException</code> to
062:         * be thrown.</p>
063:         *
064:         * <p>The following are examples of syntactically legal EL expressions:
065:         *
066:         * <ul>
067:         *   <li><code>${person.lastName}</code></li>
068:         *   <li><code>${8 * 8}</code></li>
069:         *   <li><code>${my:reverse('hello')}</code></li>
070:         * </ul>
071:         * </p>
072:         *
073:         * @deprecated As of JSP 2.1, replaced by {@link javax.el.ExpressionFactory}
074:         * @since JSP 2.0
075:         */
076:        public abstract class ExpressionEvaluator {
077:
078:            /**
079:             * Prepare an expression for later evaluation.  This method should perform
080:             * syntactic validation of the expression; if in doing so it detects 
081:             * errors, it should raise an ELParseException.
082:             *
083:             * @param expression The expression to be evaluated.
084:             * @param expectedType The expected type of the result of the evaluation
085:             * @param fMapper A FunctionMapper to resolve functions found in 
086:             *     the expression.  It can be null, in which case no functions 
087:             *     are supported for this invocation.  The ExpressionEvaluator 
088:             *     must not hold on to the FunctionMapper reference after 
089:             *     returning from <code>parseExpression()</code>.  The 
090:             *     <code>Expression</code> object returned must invoke the same 
091:             *     functions regardless of whether the mappings in the 
092:             *     provided <code>FunctionMapper</code> instance change between 
093:             *     calling <code>ExpressionEvaluator.parseExpression()</code>
094:             *     and <code>Expression.evaluate()</code>.
095:             * @return The Expression object encapsulating the arguments.
096:             *
097:             * @exception ELException Thrown if parsing errors were found.
098:             */
099:            public abstract Expression parseExpression(String expression,
100:                    Class expectedType, FunctionMapper fMapper)
101:                    throws ELException;
102:
103:            /** 
104:             * Evaluates an expression.  This method may perform some syntactic 
105:             * validation and, if so, it should raise an ELParseException error if 
106:             * it encounters syntactic errors.  EL evaluation errors should cause 
107:             * an ELException to be raised.
108:             *
109:             * @param expression The expression to be evaluated.
110:             * @param expectedType The expected type of the result of the evaluation
111:             * @param vResolver A VariableResolver instance that can be used at 
112:             *     runtime to resolve the name of implicit objects into Objects.
113:             * @param fMapper A FunctionMapper to resolve functions found in 
114:             *     the expression.  It can be null, in which case no functions 
115:             *     are supported for this invocation.  
116:             * @return The result of the expression evaluation.
117:             *
118:             * @exception ELException Thrown if the expression evaluation failed.
119:             */
120:            public abstract Object evaluate(String expression,
121:                    Class expectedType, VariableResolver vResolver,
122:                    FunctionMapper fMapper) throws ELException;
123:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.