org.apache.tiles.request.mustache
Class MustacheScopeExtractor

Package class diagram package MustacheScopeExtractor
java.lang.Object
  extended by org.apache.tiles.request.mustache.MustacheScopeExtractor
All Implemented Interfaces:
Addable<Object>, AttributeExtractor, HasAddableKeys<Object>, HasKeys<Object>, HasRemovableKeys<Object>

public final class MustacheScopeExtractor
extends Object
implements AttributeExtractor


Constructor Summary
MustacheScopeExtractor(Scope scope)
           
 
Method Summary
 Enumeration<String> getKeys()
          The enumeration of the keys of the stored attributes.
 Object getValue(String key)
          Returns the value of the attribute with the given key.
 void removeValue(String key)
          Removes an attribute.
 void setValue(String key, Object value)
          Sets a value for the given key.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MustacheScopeExtractor

public MustacheScopeExtractor(Scope scope)
Method Detail

removeValue

public void removeValue(String key)
Description copied from interface: HasRemovableKeys
Removes an attribute.

Specified by:
removeValue in interface HasRemovableKeys<Object>
Parameters:
key - The key of the attribute to remove.

getKeys

public Enumeration<String> getKeys()
Description copied from interface: HasKeys
The enumeration of the keys of the stored attributes.

Specified by:
getKeys in interface HasKeys<Object>
Returns:
The keys.

getValue

public Object getValue(String key)
Description copied from interface: HasKeys
Returns the value of the attribute with the given key.

Specified by:
getValue in interface HasKeys<Object>
Parameters:
key - The key of the attribute.
Returns:
The value.

setValue

public void setValue(String key,
                     Object value)
Description copied from interface: Addable
Sets a value for the given key.

Specified by:
setValue in interface Addable<Object>
Parameters:
key - The key of the attribute.
value - The value of the attribute.


Copyright © 2001-2012 Apache Software Foundation. All Rights Reserved.