Uses of Class
org.apache.commons.jelly.TagLibrary

Packages that use TagLibrary
org.apache.commons.jelly This package contains the main jelly API classes. 
org.apache.commons.jelly.impl Core implementation classes for Jelly. 
org.apache.commons.jelly.tags.core The core Tags from the JSTL plus Jelly extensions. 
 

Uses of TagLibrary in org.apache.commons.jelly
 

Methods in org.apache.commons.jelly that return TagLibrary
 TagLibrary JellyContext.getTagLibrary(java.lang.String namespaceURI)
           
 

Methods in org.apache.commons.jelly with parameters of type TagLibrary
 void JellyContext.registerTagLibrary(java.lang.String namespaceURI, TagLibrary taglib)
          Registers the given tag library against the given namespace URI.
 

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

Subclasses of TagLibrary in org.apache.commons.jelly.impl
 class DynamicTagLibrary
          DynamicTagLibrary represents a TagLibrary which gets created by running a Jelly script.
 

Fields in org.apache.commons.jelly.impl declared as TagLibrary
private  TagLibrary DynamicTagLibrary.parent
           
 

Methods in org.apache.commons.jelly.impl that return TagLibrary
 TagLibrary DynamicTagLibrary.getParent()
          Returns the parent library which will be used to resolve unknown tags.
protected  TagLibrary DefaultTagLibraryResolver.loadClass(java.lang.String uri, java.lang.String className)
          Instantiates the given class name.
protected  TagLibrary DefaultTagLibraryResolver.newInstance(java.lang.String uri, java.lang.Class theClass)
          Creates a new instance of the given TagLibrary class or return null if it could not be instantiated.
 TagLibrary TagLibraryResolver.resolveTagLibrary(java.lang.String uri)
          Attempts to resolve the given URI to be associated with a TagLibrary otherwise null is returned to indicate no tag library could be found so that the namespace URI should be treated as just vanilla XML.
 TagLibrary DefaultTagLibraryResolver.resolveTagLibrary(java.lang.String uri)
          Attempts to resolve the given URI to be associated with a TagLibrary otherwise null is returned to indicate no tag library could be found so that the namespace URI should be treated as just vanilla XML.
 

Methods in org.apache.commons.jelly.impl with parameters of type TagLibrary
 void Embedded.registerTagLibrary(java.lang.String namespaceURI, TagLibrary taglib)
          Registers the given tag library against the given namespace URI.
 void DynamicTagLibrary.setParent(TagLibrary parent)
          Sets the parent to inherit tags from that are not defined in this library.
 

Uses of TagLibrary in org.apache.commons.jelly.tags.core
 

Subclasses of TagLibrary in org.apache.commons.jelly.tags.core
 class CoreTagLibrary
          This is the core tag library for jelly and contains commonly used tags.