Class VelocityScopeExtractor
java.lang.Object
org.apache.tiles.request.velocity.extractor.VelocityScopeExtractor
- All Implemented Interfaces:
Addable<Object>
,AttributeExtractor
,HasAddableKeys<Object>
,HasKeys<Object>
,HasRemovableKeys<Object>
Extracts attributes from Velocity context..
-
Constructor Summary
ConstructorsConstructorDescriptionVelocityScopeExtractor
(org.apache.velocity.context.Context context) Constructor. -
Method Summary
Modifier and TypeMethodDescriptiongetKeys()
The enumeration of the keys of the stored attributes.Returns the value of the attribute with the given key.void
removeValue
(String name) Removes an attribute.void
Sets a value for the given key.
-
Constructor Details
-
VelocityScopeExtractor
public VelocityScopeExtractor(org.apache.velocity.context.Context context) Constructor.- Parameters:
context
- The Velocity context.
-
-
Method Details
-
removeValue
Description copied from interface:HasRemovableKeys
Removes an attribute.- Specified by:
removeValue
in interfaceHasRemovableKeys<Object>
- Parameters:
name
- The key of the attribute to remove.
-
getKeys
Description copied from interface:HasKeys
The enumeration of the keys of the stored attributes. -
getValue
Description copied from interface:HasKeys
Returns the value of the attribute with the given key. -
setValue
Description copied from interface:Addable
Sets a value for the given key.
-