|
[tag libraries]
[tags]
Library | Description |
jelly:dynabean |
A tag library for creating new DynaClass and DynaBean objects from the
beanutils
library
|
A tag library for creating new DynaClass and DynaBean objects from the
beanutils
library
Tag Name | Description |
dynabean | A tag which conditionally evaluates its body based on some condition
|
dynaclass | A tag which creates and defines and creates a DynaClassThe DynaClass object is placed by name in the context,so that a DynaBean tag can use it by name to instantiatea DynaBean object
|
property | DynaProperty tag defines a property of a DynaClassIt can only exist inside a DynaClass parent contextThe properties are added to the properties arrayof the parent context, and will be used tocreate the DynaClass object
|
set | A tag which sets a variable from the result of an expression
|
[tag libraries]
[tags]
A tag which conditionally evaluates its body based on some condition
Attribute Name | Type | Description |
dynaclass | org.apache.commons.beanutils.DynaClass | Sets the DynaClass of the new instance to create |
escapeText | boolean |
|
trim | boolean |
|
var | java.lang.String | Sets the name of the variable to export the new DynaBean instance to |
A tag which creates and defines and creates a DynaClassThe DynaClass object is placed by name in the context,so that a DynaBean tag can use it by name to instantiatea DynaBean object
Attribute Name | Type | Description |
escapeText | boolean |
|
name | java.lang.String | Sets the name of the new DynaClass |
trim | boolean |
|
var | java.lang.String | Sets the name of the variable to export the DynaClass instance |
DynaProperty tag defines a property of a DynaClassIt can only exist inside a DynaClass parent contextThe properties are added to the properties arrayof the parent context, and will be used tocreate the DynaClass object
Attribute Name | Type | Description |
escapeText | boolean |
|
name | java.lang.String | Sets the name of this property |
propertyClass | java.lang.Class | Sets the Class instance for this property |
trim | boolean |
|
type | java.lang.String | Sets the type name of this property |
A tag which sets a variable from the result of an expression
Attribute Name | Type | Description |
escapeText | boolean |
|
property | java.lang.String | Sets the name of the property to set on the target object. |
scope | java.lang.String | Sets the variable scope for this variable. For example setting this value to 'parent' willset this value in the parent scope. When Jelly is run from inside a Servlet environmentthen other scopes will be available such as 'request', 'session' or 'application'.Other applications may implement their own custom scopes. |
target | java.lang.Object | Sets the target object on which to set a property. |
trim | boolean |
|
value | org.apache.commons.jelly.expression.Expression | Sets the expression to evaluate. |
var | java.lang.String | Sets the variable name to define for this expression |
|