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. 
org.apache.commons.jelly.tags.define Tag library which allows the creation of new tags using Jelly script itself. 
org.apache.commons.jelly.tags.dynabean A tag library for creating new DynaClass and DynaBean objects from the beanutils library 
org.apache.commons.jelly.tags.fmt   
org.apache.commons.jelly.tags.junit A collection of JUnit tags for performing unit tests written in Jelly script. 
org.apache.commons.jelly.tags.log Custom tags for generating textual logging information using commons-logging which will use either log4j, logkit or JDK1.4 logging depending on the classpath and configuration. 
org.apache.commons.jelly.tags.xml The XML Tags from the JSTL 
 

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.
 

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.
 

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

Subclasses of TagLibrary in org.apache.commons.jelly.tags.define
 class DefineTagLibrary
          This is a tag library that allows you to define new tag libraries at run time.
 

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

Subclasses of TagLibrary in org.apache.commons.jelly.tags.dynabean
 class DynabeanTagLibrary
          Describes the Taglib.
 

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

Subclasses of TagLibrary in org.apache.commons.jelly.tags.fmt
 class FmtTagLibrary
          Describes the tag library for tags in JSTL.
 

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

Subclasses of TagLibrary in org.apache.commons.jelly.tags.junit
 class JUnitTagLibrary
          Describes the Taglib.
 

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

Subclasses of TagLibrary in org.apache.commons.jelly.tags.log
 class LogTagLibrary
          Describes the Taglib.
 

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

Subclasses of TagLibrary in org.apache.commons.jelly.tags.xml
 class XMLTagLibrary
          Describes the Taglib.
 



Copyright © 2012. All Rights Reserved.