|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.ant | A tag library for using Ant tasks within Jelly |
org.apache.commons.jelly.tags.antlr | A tag library for working with the Antlr library |
org.apache.commons.jelly.tags.beanshell | A tag library for working with BeanShell expressions and scripts within Jelly |
org.apache.commons.jelly.tags.betwixt | A tag library for turning XML into beans or beans into XML using the Betwixt library |
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.core | The core Tags from the JSTL |
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.html | Tags for parsing HTML so that it can be processed by Jelly using Andy Clark's NeckoHTML |
org.apache.commons.jelly.tags.http | A tag library for working with HTTP, performing HTTP GET, POST and other actions |
org.apache.commons.jelly.tags.interaction | A simple interaction tag library so that Jelly scripts can be interactive. |
org.apache.commons.jelly.tags.jeez | This tag library groups together the ant and werkz tag libraries into one namespace. |
org.apache.commons.jelly.tags.jms | A tag library for working with JMS using the Messenger project |
org.apache.commons.jelly.tags.jsl | The Jelly Stylesheet Library (JSL) |
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.ojb | A variety of tags for working with the ObjectBridge persistence engine |
org.apache.commons.jelly.tags.quartz | A tag library for scheduling tasks to be run using the Quartz library |
org.apache.commons.jelly.tags.sql | The SQL Tags from the JSTL |
org.apache.commons.jelly.tags.swing | A tag library for creating Swing UIs via Jelly script |
org.apache.commons.jelly.tags.util | A number of utility tags such as for tokenizing Strings. |
org.apache.commons.jelly.tags.validate | A tag library for validating XML using various schema languages like DTD, XML Schema, Relax NG as well as Relax and TREX. |
org.apache.commons.jelly.tags.werkz | A tag library for defining targets (goals) and having pre/post dependencies which uses the Werkz library for resolving goals and dependencies. |
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. |
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. |
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. |
Methods in org.apache.commons.jelly.impl with parameters of type TagLibrary | |
void |
DynamicTagLibrary.setParent(TagLibrary parent)
Sets the parent to inherit tags from that are not defined in this library. |
void |
Embedded.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.tags.ant |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.ant | |
class |
AntTagLibrary
A Jelly custom tag library that allows Ant tasks to be called from inside Jelly. |
Uses of TagLibrary in org.apache.commons.jelly.tags.antlr |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.antlr | |
class |
AntlrTagLibrary
Implements tags that are useful for working with ANTLR. |
Uses of TagLibrary in org.apache.commons.jelly.tags.beanshell |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.beanshell | |
class |
BeanShellTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.betwixt |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.betwixt | |
class |
BetwixtTagLibrary
A Jelly custom tag library that uses the Betwixt project to parse XML and turn it into beans or turn beans into XML |
Uses of TagLibrary in org.apache.commons.jelly.tags.bsf |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.bsf | |
class |
BSFTagLibrary
Describes the Taglib. |
class |
JavaScriptTagLibrary
Describes the Taglib. |
class |
JPythonTagLibrary
Describes the Taglib. |
class |
PNutsTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.core |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.core | |
class |
CoreTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.define |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.define | |
class |
DefineTagLibrary
Describes the Taglib. |
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.html |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.html | |
class |
HTMLTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.http |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.http | |
class |
HttpTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.interaction |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.interaction | |
class |
InteractionTagLibrary
A TagLibrary to interact with the user. |
Uses of TagLibrary in org.apache.commons.jelly.tags.jeez |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.jeez | |
class |
JeezTagLibrary
Convenience taglib that puts jelly:core, jelly:werkz and jelly:ant into a single namespace. |
Uses of TagLibrary in org.apache.commons.jelly.tags.jms |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.jms | |
class |
JMSTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.jsl |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.jsl | |
class |
JSLTagLibrary
Describes the Taglib. |
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.ojb |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.ojb | |
class |
OjbTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.quartz |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.quartz | |
class |
QuartzTagLibrary
Tag library for the Quartz enterprise job scheduler. |
Uses of TagLibrary in org.apache.commons.jelly.tags.sql |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.sql | |
class |
SqlTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.swing |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.swing | |
class |
SwingTagLibrary
A Jelly custom tag library that allows Ant tasks to be called from inside Jelly. |
Uses of TagLibrary in org.apache.commons.jelly.tags.util |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.util | |
class |
UtilTagLibrary
Implements general utility tags. |
Uses of TagLibrary in org.apache.commons.jelly.tags.validate |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.validate | |
class |
ValidateTagLibrary
Describes the Taglib. |
Uses of TagLibrary in org.apache.commons.jelly.tags.werkz |
Subclasses of TagLibrary in org.apache.commons.jelly.tags.werkz | |
class |
WerkzTagLibrary
Implements a bunch of tags that are useful for working with Werkz. |
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |