Library:Apache Jakarta Commons Jelly
Version:1.0
Compatibility:JDK 1.4
Classes in library Apache Jakarta Commons Jelly.
NamePackageDescription
ArgTagorg.apache.commons.jelly.tags.coreAn argument to a NewTag or InvokeTag .
Attributeorg.apache.commons.jelly.implRepresents the attribute definition used by dynamic tags, such as whether the attribute is required or any default values etc.
BaseClassLoaderTagorg.apache.commons.jelly.tags.coreAbstract base tag providing ClassLoader support.
BaseJellyTestorg.apache.commons.jelly.testNo description provided.
BreakTagorg.apache.commons.jelly.tags.coreA tag which terminates the execution of the current <forEach> or ≶while> loop.
CaseTagorg.apache.commons.jelly.tags.coreA tag which conditionally evaluates its body if my value attribute equals my ancestor <switch> tag's "on" attribute.
CatchTagorg.apache.commons.jelly.tags.coreA tag which catches exceptions thrown by its body.
ChooseTagorg.apache.commons.jelly.tags.coreA tag which conditionally evaluates its body based on some condition
ClassLoaderUtilsorg.apache.commons.jelly.utilA class to centralize the class loader management code.
CommandLineParserorg.apache.commons.jelly.utilUtility class to parse command line options using CLI.
CompositeExpressionorg.apache.commons.jelly.expression

CompositeExpression is a Composite expression made up of several Expression objects which are concatenated into a single String.

CompositeTextScriptBlockorg.apache.commons.jelly.impl

CompositeTextScriptBlock represents a text body of a a tag which contains expressions, so that whitespace trimming can be handled differently.

ConstantExpressionorg.apache.commons.jelly.expression

ConstantExpression represents a constant expression.

CoreTagLibraryorg.apache.commons.jelly.tags.coreThis is the core tag library for jelly and contains commonly used tags.
DefaultNamespaceFilterorg.apache.commons.jelly.parserXMLFilter that can provide a default namespace when one has not been declared by the XML document.
DefaultTagorg.apache.commons.jelly.tags.coreA tag which conditionally evaluates its body if none of its preceeding sibling <case> tags have been evaluated.
DefaultTagFactoryorg.apache.commons.jelly.impl

DefaultTagFactory a default implementation of TagFactory which creates new instances of a given class.

DefaultTagLibraryResolverorg.apache.commons.jelly.impl

DefaultTagLibraryResolver is a default implemenation which attempts to interpret the URI as a String called 'jelly:className' and class load the given Java class.

DynaBeanTagSupportorg.apache.commons.jelly

DynaBeanTag is a DynaTag implementation which uses a DynaBean to store its attribute values in.

DynamicBeanTagorg.apache.commons.jelly.implThis tag is bound onto a Java Bean class.
DynamicDynaBeanTagorg.apache.commons.jelly.implThis tag is bound onto a DynaClass instance.
DynamicTagorg.apache.commons.jelly.impl

DynamicTag is a tag that is created from inside a Jelly script as a Jelly template and will invoke a given script, passing in its instantiation attributes as variables and will allow the template to invoke its instance body.

DynamicTagLibraryorg.apache.commons.jelly.impl

DynamicTagLibrary represents a TagLibrary which gets created by running a Jelly script.

DynaTagSupportorg.apache.commons.jelly

DynaTagSupport is an abstract base class for any DynaTag implementation to derive from.

Embeddedorg.apache.commons.jelly.implNo description provided.
ExpressionScriptorg.apache.commons.jelly.impl

ExpressionScript outputs the value of an expression as text.

ExpressionSupportorg.apache.commons.jelly.expression

ExpressionSupport an abstract base class for Expression implementations which provides default implementations of some of the typesafe evaluation methods.

ExprTagorg.apache.commons.jelly.tags.coreA tag which evaluates an expression
FileTagorg.apache.commons.jelly.tags.coreA tag that pipes its body to a file denoted by the name attribute or to an in memory String which is then output to a variable denoted by the var variable.
ForEachTagorg.apache.commons.jelly.tags.coreIterates over a collection, iterator or an array of objects.
ForEachTag.LoopStatusorg.apache.commons.jelly.tags.coreHolds the status of the loop.
GetStaticTagorg.apache.commons.jelly.tags.coreA tag which can retrieve the value of a static field of a given class.
IfTagorg.apache.commons.jelly.tags.coreA tag which conditionally evaluates its body based on some condition
ImportTagorg.apache.commons.jelly.tags.coreImports another script.
IncludeTagorg.apache.commons.jelly.tags.coreA tag which conditionally evaluates its body based on some condition
InvokeStaticTagorg.apache.commons.jelly.tags.coreA Tag which can invoke a static method on a class, without an instance of the class being needed.
InvokeTagorg.apache.commons.jelly.tags.coreA tag which calls a method in an object instantied by core:new
Jellyorg.apache.commons.jelly

Jelly is a helper class which is capable of running a Jelly script.

JellyContextorg.apache.commons.jelly

JellyContext represents the Jelly context.

JellyServletorg.apache.commons.jelly.servletServlet for handling display of Jelly-fied XML files.
JellyServletContextorg.apache.commons.jelly.servletNo description provided.
JellyTagorg.apache.commons.jelly.tags.coreThe root Jelly tag which should be evaluated first
JexlExpressionorg.apache.commons.jelly.expression.jexlRepresents a Jexl expression which fully supports the Expression Language in JSTL and JSP along with some extra features like object method invocation.
JexlExpressionFactoryorg.apache.commons.jelly.expression.jexlRepresents a factory of Jexl expression which fully supports the Expression Language in JSTL and JSP.
MapTagSupportorg.apache.commons.jelly

MapTag is a DynaTag implementation which uses a Map to store its attribute values in.

MuteTagorg.apache.commons.jelly.tags.coreA tag which executes its body but passing no output.
NewTagorg.apache.commons.jelly.tags.coreA tag which creates a new object of the given type
OtherwiseTagorg.apache.commons.jelly.tags.coreThe otherwise block of a choose/when/otherwise group of tags
ParseTagorg.apache.commons.jelly.tags.coreParses the output of this tags body or of a given String as a Jelly script then either outputting the Script as a variable or executing the script.
RemoveTagorg.apache.commons.jelly.tags.coreA tag which removes the variable of the given name from the current variable scope.
Resourcesorg.apache.commons.jelly.tags

Provides locale-neutral access to string resources.

SafeContentHandlerorg.apache.commons.jelly.utilEnsures that only one start and end document event is passed onto the underlying ContentHandler.
ScopeTagorg.apache.commons.jelly.tags.coreA tag which creates a new child variable scope for its body.
ScriptBlockorg.apache.commons.jelly.impl

ScriptBlock a block of scripts.

SetPropertiesTagorg.apache.commons.jelly.tags.coreA tag which sets the bean properties on the given bean.
SetTagorg.apache.commons.jelly.tags.coreA tag which sets a variable from the result of an expression
StaticTagorg.apache.commons.jelly.impl

StaticTag represents a static XML element which echos itself to XMLOutput when it is invoked.

StaticTagScriptorg.apache.commons.jelly.impl

StaticTagScript is a script that evaluates a StaticTag, a piece of static XML though its attributes or element content may contain dynamic expressions.

SwitchTagorg.apache.commons.jelly.tags.coreExecutes the child <case> tag whose value equals my on attribute.
TagLibraryorg.apache.commons.jelly

Taglib represents the metadata for a Jelly custom tag library.

TagScriptorg.apache.commons.jelly.impl

TagScript is a Script that evaluates a custom tag.

TagSupportorg.apache.commons.jelly

TagSupport an abstract base class which is useful to inherit from if developing your own tag.

TagUtilsorg.apache.commons.jelly.utilContains static methods to help tag developers.
TextScriptorg.apache.commons.jelly.impl

TextScript outputs some static text.

ThreadTagorg.apache.commons.jelly.tags.coreA tag that spawns the contained script in a separate thread
UseBeanTagorg.apache.commons.jelly.tags.coreA tag which instantiates an instance of the given class and then sets the properties on the bean.
UseListTagorg.apache.commons.jelly.tags.coreA tag which creates a List implementation and optionally adds all of the elements identified by the items attribute.
WhenTagorg.apache.commons.jelly.tags.coreA tag which conditionally evaluates its body based on some condition
WhileTagorg.apache.commons.jelly.tags.coreA tag which performs an iteration while the result of an expression is true.
WhitespaceTagorg.apache.commons.jelly.tags.coreA simple tag used to preserve whitespace inside its body
XMLOutputorg.apache.commons.jelly

XMLOutput is used to output XML events in a SAX-like manner.

XMLParserorg.apache.commons.jelly.parser

XMLParser parses the XML Jelly format.

XPathComparatororg.apache.commons.jelly.xpathCompares xml nodes by extracting the value at xpath and comparing it.
XPathExpressionorg.apache.commons.jelly.expression.xpathAn expression which returns an XPath object.
XPathTagSupportorg.apache.commons.jelly.xpathAn abstract base class useful for implementation inheritence
Search