|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JellyContext | |
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.impl | Core implementation classes for Jelly. |
org.apache.commons.jelly.parser | Jelly parsers both XML syntax and non-XML syntaxes are supported. |
org.apache.commons.jelly.tags.ant | A tag library for using Ant tasks within Jelly |
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.xml | The XML Tags from the JSTL |
org.apache.commons.jelly.task | A collection of Ant tasks for working with Jelly. |
Uses of JellyContext in org.apache.commons.jelly |
Fields in org.apache.commons.jelly declared as JellyContext | |
protected JellyContext |
TagSupport.context
|
Methods in org.apache.commons.jelly that return JellyContext | |
JellyContext |
Jelly.getJellyContext()
The context to use |
JellyContext |
Tag.getContext()
Gets the context in which the tag will be run |
JellyContext |
TagSupport.getContext()
|
JellyContext |
JellyContext.getParent()
|
JellyContext |
JellyContext.getScope(java.lang.String name)
|
JellyContext |
JellyContext.newJellyContext(java.util.Map newVariables)
A factory method to create a new child context of the current context. |
JellyContext |
JellyContext.runScript(java.io.File file,
XMLOutput output)
Parses the script from the given File then compiles it and runs it. |
JellyContext |
JellyContext.runScript(java.net.URL url,
XMLOutput output)
Parses the script from the given URL then compiles it and runs it. |
JellyContext |
JellyContext.runScript(java.lang.String uri,
XMLOutput output)
Parses the script from the given uri using the JellyContext.getResource() API then compiles it and runs it. |
JellyContext |
JellyContext.runScript(java.lang.String uri,
XMLOutput output,
boolean export,
boolean inherit)
Parses the script from the given uri using the JellyContext.getResource() API then compiles it and runs it. |
protected JellyContext |
JellyContext.createChildContext()
Factory method to create a new child of this context |
Methods in org.apache.commons.jelly with parameters of type JellyContext | |
void |
Tag.setContext(JellyContext context)
Sets the context in which the tag will be run |
void |
TagSupport.setContext(JellyContext context)
Sets the context in which the tag will be run |
void |
DynaBeanTagSupport.setContext(JellyContext context)
Sets the context in which the tag will be run |
void |
Script.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
Constructors in org.apache.commons.jelly with parameters of type JellyContext | |
JellyContext(JellyContext parent)
|
|
JellyContext(JellyContext parentJellyContext,
java.net.URL currentURL)
|
|
JellyContext(JellyContext parentJellyContext,
java.net.URL rootURL,
java.net.URL currentURL)
|
Uses of JellyContext in org.apache.commons.jelly.expression |
Methods in org.apache.commons.jelly.expression with parameters of type JellyContext | |
java.lang.String |
ExpressionSupport.evaluateAsString(JellyContext context)
|
boolean |
ExpressionSupport.evaluateAsBoolean(JellyContext context)
|
java.util.Iterator |
ExpressionSupport.evaluateAsIterator(JellyContext context)
|
java.lang.Object |
CompositeExpression.evaluate(JellyContext context)
|
java.lang.String |
CompositeExpression.evaluateAsString(JellyContext context)
|
java.util.Iterator |
CompositeExpression.evaluateAsIterator(JellyContext context)
|
java.lang.Object |
Expression.evaluate(JellyContext context)
Evaluates the expression with the given context and returns the result |
java.lang.String |
Expression.evaluateAsString(JellyContext context)
Evaluates the expression with the given context coercing the result to be a String. |
boolean |
Expression.evaluateAsBoolean(JellyContext context)
Evaluates the expression with the given context coercing the result to be a boolean. |
java.util.Iterator |
Expression.evaluateAsIterator(JellyContext context)
Evaluates the expression with the given context coercing the result to be an Iterator. |
java.lang.Object |
ConstantExpression.evaluate(JellyContext context)
Evaluate expression against given context. |
Uses of JellyContext in org.apache.commons.jelly.expression.jexl |
Methods in org.apache.commons.jelly.expression.jexl with parameters of type JellyContext | |
java.lang.Object |
JexlExpression.evaluate(JellyContext context)
|
Uses of JellyContext in org.apache.commons.jelly.impl |
Methods in org.apache.commons.jelly.impl that return JellyContext | |
JellyContext |
Embedded.getContext()
Method getContext. |
Methods in org.apache.commons.jelly.impl with parameters of type JellyContext | |
void |
TextScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
ScriptBlock.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
DynaTagScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
BeanTagScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
ExpressionScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
Embedded.setContext(JellyContext context)
Method setContext. |
void |
StaticTagScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
protected Tag |
StaticTagScript.findDynamicTag(JellyContext context,
StaticTag tag)
Attempts to find a dynamically created tag that has been created since this script was compiled |
Uses of JellyContext in org.apache.commons.jelly.parser |
Methods in org.apache.commons.jelly.parser that return JellyContext | |
JellyContext |
XMLParser.getContext()
|
Methods in org.apache.commons.jelly.parser with parameters of type JellyContext | |
void |
XMLParser.setContext(JellyContext context)
|
Uses of JellyContext in org.apache.commons.jelly.tags.ant |
Methods in org.apache.commons.jelly.tags.ant with parameters of type JellyContext | |
static org.apache.tools.ant.Project |
AntTagLibrary.getProject(JellyContext context)
A helper method which will attempt to find a project in the current context or install one if need be. |
static void |
AntTagLibrary.setProject(JellyContext context,
org.apache.tools.ant.Project project)
Sets the Ant Project to be used for this JellyContext. |
static org.apache.tools.ant.Project |
AntTagLibrary.createProject(JellyContext context)
A helper method to create a new project #### this method could move to an AntUtils class. |
Constructors in org.apache.commons.jelly.tags.ant with parameters of type JellyContext | |
JellyPropsHandler(JellyContext context)
Simple constructor with the context to be used. |
Uses of JellyContext in org.apache.commons.jelly.tags.beanshell |
Methods in org.apache.commons.jelly.tags.beanshell that return JellyContext | |
JellyContext |
JellyInterpreter.getJellyContext()
|
Methods in org.apache.commons.jelly.tags.beanshell with parameters of type JellyContext | |
java.lang.Object |
BeanShellExpression.evaluate(JellyContext context)
|
void |
JellyInterpreter.setJellyContext(JellyContext context)
|
Uses of JellyContext in org.apache.commons.jelly.tags.bsf |
Methods in org.apache.commons.jelly.tags.bsf that return JellyContext | |
JellyContext |
JellyContextRegistry.getJellyContext()
|
Methods in org.apache.commons.jelly.tags.bsf with parameters of type JellyContext | |
java.lang.Object |
BSFExpression.evaluate(JellyContext context)
|
void |
JellyContextRegistry.setJellyContext(JellyContext context)
|
Uses of JellyContext in org.apache.commons.jelly.tags.jsl |
Methods in org.apache.commons.jelly.tags.jsl with parameters of type JellyContext | |
java.lang.Object |
XPathPatternExpression.evaluate(JellyContext context)
|
Uses of JellyContext in org.apache.commons.jelly.tags.xml |
Methods in org.apache.commons.jelly.tags.xml with parameters of type JellyContext | |
java.lang.Object |
XPathExpression.evaluate(JellyContext context)
|
Uses of JellyContext in org.apache.commons.jelly.task |
Subclasses of JellyContext in org.apache.commons.jelly.task | |
class |
AntJellyContext
AntJellyContext represents the Jelly context from inside Ant. |
Methods in org.apache.commons.jelly.task that return JellyContext | |
JellyContext |
JellyTask.getJellyContext()
The context to use |
protected JellyContext |
AntJellyContext.createChildContext()
Factory method to create a new child of this context |
Constructors in org.apache.commons.jelly.task with parameters of type JellyContext | |
AntJellyContext(org.apache.tools.ant.Project project,
JellyContext parentJellyContext)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |