Uses of Interface
org.apache.commons.jelly.expression.ExpressionFactory

Packages that use ExpressionFactory
org.apache.commons.jelly This package contains the main jelly API classes. 
org.apache.commons.jelly.expression Implementations of the Expression classes using commons-jexl. 
org.apache.commons.jelly.expression.jexl Expressions used to turn the tag attribute values into compiled expression objects for languages such as Jexl, XPath, Velocity, beanshell, Rhino etc. 
org.apache.commons.jelly.parser Jelly parsers both XML syntax and non-XML syntaxes are supported. 
org.apache.commons.jelly.tags.beanshell A tag library for working with BeanShell expressions and scripts within Jelly 
org.apache.commons.jelly.tags.bsf A collection of tag libraries for working with BSF based scripting languages like JavaScript, Jython and PNuts 
org.apache.commons.jelly.tags.jsl The Jelly Stylesheet Library (JSL) 
org.apache.commons.jelly.tags.junit A collection of JUnit tags for performing unit tests written in Jelly script. 
org.apache.commons.jelly.tags.xml The XML Tags from the JSTL  
 

Uses of ExpressionFactory in org.apache.commons.jelly
 

Methods in org.apache.commons.jelly that return ExpressionFactory
protected  ExpressionFactory TagLibrary.getExpressionFactory()
          Allows derived tag libraries to use their own factory
 

Methods in org.apache.commons.jelly with parameters of type ExpressionFactory
 Expression TagLibrary.createExpression(ExpressionFactory factory, java.lang.String tagName, java.lang.String attributeName, java.lang.String attributeValue)
          Allows taglibs to use their own expression evaluation mechanism
 

Uses of ExpressionFactory in org.apache.commons.jelly.expression
 

Methods in org.apache.commons.jelly.expression with parameters of type ExpressionFactory
static Expression CompositeExpression.parse(java.lang.String text, ExpressionFactory factory)
          Parses the given String to be either a ConstantExpresssion, an Expression denoted as "${foo}" or some String with embedded expresssions such as "abc${something}def${else}xyz" which results in a CompositeExpression being returned.
 

Uses of ExpressionFactory in org.apache.commons.jelly.expression.jexl
 

Classes in org.apache.commons.jelly.expression.jexl that implement ExpressionFactory
 class JexlExpressionFactory
          Represents a factory of Jexl expression which fully supports the Expression Language in JSTL and JSP.
 

Uses of ExpressionFactory in org.apache.commons.jelly.parser
 

Methods in org.apache.commons.jelly.parser that return ExpressionFactory
 ExpressionFactory XMLParser.getExpressionFactory()
           
protected  ExpressionFactory XMLParser.createExpressionFactory()
           
 

Methods in org.apache.commons.jelly.parser with parameters of type ExpressionFactory
 void XMLParser.setExpressionFactory(ExpressionFactory expressionFactory)
          Sets the expression factory used to evaluate tag attributes
 

Uses of ExpressionFactory in org.apache.commons.jelly.tags.beanshell
 

Classes in org.apache.commons.jelly.tags.beanshell that implement ExpressionFactory
 class BeanShellExpressionFactory
          Represents a factory of beanshell expressions
 

Methods in org.apache.commons.jelly.tags.beanshell that return ExpressionFactory
protected  ExpressionFactory BeanShellTagLibrary.getExpressionFactory()
          Allows derived tag libraries to use their own factory
 

Uses of ExpressionFactory in org.apache.commons.jelly.tags.bsf
 

Classes in org.apache.commons.jelly.tags.bsf that implement ExpressionFactory
 class BSFExpressionFactory
          Represents a factory of BSF expressions
 

Methods in org.apache.commons.jelly.tags.bsf that return ExpressionFactory
protected  ExpressionFactory BSFTagLibrary.getExpressionFactory()
          Allows derived tag libraries to use their own factory
 

Uses of ExpressionFactory in org.apache.commons.jelly.tags.jsl
 

Methods in org.apache.commons.jelly.tags.jsl with parameters of type ExpressionFactory
 Expression JSLTagLibrary.createExpression(ExpressionFactory factory, java.lang.String tagName, java.lang.String attributeName, java.lang.String attributeValue)
           
 

Uses of ExpressionFactory in org.apache.commons.jelly.tags.junit
 

Methods in org.apache.commons.jelly.tags.junit with parameters of type ExpressionFactory
 Expression JUnitTagLibrary.createExpression(ExpressionFactory factory, java.lang.String tagName, java.lang.String attributeName, java.lang.String attributeValue)
           
 

Uses of ExpressionFactory in org.apache.commons.jelly.tags.xml
 

Methods in org.apache.commons.jelly.tags.xml with parameters of type ExpressionFactory
 Expression XMLTagLibrary.createExpression(ExpressionFactory factory, java.lang.String tagName, java.lang.String attributeName, java.lang.String attributeValue)
           
 



Copyright © 2002-2002 Apache Software Foundation. All Rights Reserved.