Uses of Interface
org.apache.commons.jelly.impl.TagFactory

Packages that use TagFactory
org.apache.commons.jelly This package contains the main jelly API classes. 
org.apache.commons.jelly.impl Core implementation classes for Jelly. 
 

Uses of TagFactory in org.apache.commons.jelly
 

Methods in org.apache.commons.jelly with parameters of type TagFactory
protected  void TagLibrary.registerTagFactory(java.lang.String name, TagFactory tagFactory)
          Registers a tag factory for a given tag name
 

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

Classes in org.apache.commons.jelly.impl that implement TagFactory
 class DefaultTagFactory
          DefaultTagFactory a default implementation of TagFactory which creates new instances of a given class.
 

Fields in org.apache.commons.jelly.impl declared as TagFactory
private  TagFactory TagScript.tagFactory
          the factory of Tag instances
 

Methods in org.apache.commons.jelly.impl that return TagFactory
 TagFactory TagScript.getTagFactory()
          Returns the Factory of Tag instances.
 

Methods in org.apache.commons.jelly.impl with parameters of type TagFactory
 void DynamicTagLibrary.registerBeanTag(java.lang.String name, TagFactory factory)
          Creates a new Jelly Bean Tag with the given name
 void TagScript.setTagFactory(TagFactory tagFactory)
          Sets the Factory of Tag instances.
 

Constructors in org.apache.commons.jelly.impl with parameters of type TagFactory
StaticTagScript(TagFactory tagFactory)
           
TagScript(TagFactory tagFactory)