Uses of Class
org.apache.commons.jelly.impl.TagScript

Packages that use TagScript
org.apache.commons.jelly This package contains the main jelly API classes. 
org.apache.commons.jelly.expression.xpath   
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. 
 

Uses of TagScript in org.apache.commons.jelly
 

Methods in org.apache.commons.jelly that return TagScript
 TagScript TagLibrary.createTagScript(java.lang.String name, org.xml.sax.Attributes attributes)
          Creates a new script to execute the given tag name and attributes
 

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

Uses of TagScript in org.apache.commons.jelly.expression.xpath
 

Constructors in org.apache.commons.jelly.expression.xpath with parameters of type TagScript
XPathExpression(java.lang.String text, Expression xpathExpr, TagScript tagScript)
           
 

Uses of TagScript in org.apache.commons.jelly.impl
 

Subclasses of TagScript in org.apache.commons.jelly.impl
 class StaticTagScript
          StaticTagScript is a script that evaluates a StaticTag, a piece of static XML though its attributes or element content may contain dynamic expressions.
 

Fields in org.apache.commons.jelly.impl declared as TagScript
private  TagScript TagScript.parent
          the parent TagScript
 

Methods in org.apache.commons.jelly.impl that return TagScript
 TagScript DynamicTagLibrary.createTagScript(java.lang.String name, org.xml.sax.Attributes attributes)
          Creates a new script to execute the given tag name and attributes
 TagScript TagScript.getParent()
          Returns the parent.
static TagScript TagScript.newInstance(java.lang.Class tagClass)
           
 

Methods in org.apache.commons.jelly.impl with parameters of type TagScript
 void TagScript.setParent(TagScript parent)
          Sets the parent.
 

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

Fields in org.apache.commons.jelly.parser declared as TagScript
private  TagScript XMLParser.tagScript
          The current, parent tagScript
 

Methods in org.apache.commons.jelly.parser that return TagScript
protected  TagScript XMLParser.createStaticTag(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes list)
          Factory method to create a static Tag that represents some static content.
protected  TagScript XMLParser.createTag(java.lang.String namespaceURI, java.lang.String localName, org.xml.sax.Attributes list)
          Factory method to create new Tag script for the given namespaceURI and name or return null if this is not a custom Tag.
 

Methods in org.apache.commons.jelly.parser with parameters of type TagScript
protected  void XMLParser.configureTagScript(TagScript aTagScript)
          Configure a newly created TagScript instance before any Expressions are created