org.apache.commons.jelly.impl |
Core implementation classes for Jelly.
|
Java Source File Name | Type | Comment |
Attribute.java | Class | Represents the attribute definition used by dynamic tags, such as whether the attribute is required
or any default values etc. |
BeanSource.java | Interface | |
BreakException.java | Class | |
CollectionTag.java | Interface | A tag which is capable of consuming objects, such as a <useList> tag
such that nested objects will be added to the parent tag. |
CompositeTextScriptBlock.java | Class | |
DefaultTagFactory.java | Class | DefaultTagFactory a default implementation of TagFactory
which creates new instances of a given class.
|
DefaultTagLibraryResolver.java | Class | DefaultTagLibraryResolver is a default implemenation
which attempts to interpret the URI as a String called 'jelly:className'
and class load the given Java class.
|
DynamicBeanTag.java | Class | This tag is bound onto a Java Bean class. |
DynamicDynaBeanTag.java | Class | This tag is bound onto a
DynaClass instance.
When the tag is invoked a
DynaBean will be created using the tags attributes. |
DynamicTag.java | Class | |
DynamicTagLibrary.java | Class | |
Embedded.java | Class | |
ExpressionScript.java | Class | |
ScriptBlock.java | Class | |
StaticTag.java | Class | |
StaticTagScript.java | Class | StaticTagScript is a script that evaluates a StaticTag, a piece of static XML
though its attributes or element content may contain dynamic expressions.
|
TagFactory.java | Interface | TagFactory represents a Factory of
Tag instances.
Note that this class should be re-entrant and used
concurrently by multiple threads. |
TagLibraryResolver.java | Interface | |
TagScript.java | Class | TagScript is a Script that evaluates a custom tag.
Note that this class should be re-entrant and used
concurrently by multiple threads. |
TestTagLibraryResolver.java | Class | |
TextScript.java | Class | |