Class ScopeExtractor
java.lang.Object
org.apache.tiles.request.jsp.extractor.ScopeExtractor
- All Implemented Interfaces:
Addable<Object>
,AttributeExtractor
,HasAddableKeys<Object>
,HasKeys<Object>
,HasRemovableKeys<Object>
Extracts attributes from a numbered scope from
JspContext
.-
Constructor Summary
ConstructorsConstructorDescriptionScopeExtractor
(jakarta.servlet.jsp.JspContext context, int scope) 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
-
ScopeExtractor
public ScopeExtractor(jakarta.servlet.jsp.JspContext context, int scope) Constructor.- Parameters:
context
- The JSP context.scope
- The scope number.
-
-
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.
-