org.apache.myfaces.webapp.filter.servlet
Class AbstractAttributeMap
java.lang.Object
   java.util.AbstractMap
java.util.AbstractMap
       org.apache.myfaces.webapp.filter.servlet.AbstractAttributeMap
org.apache.myfaces.webapp.filter.servlet.AbstractAttributeMap
- All Implemented Interfaces: 
- Map
- Direct Known Subclasses: 
- CookieMap, RequestHeaderMap, RequestHeaderMap, RequestHeaderValuesMap, RequestHeaderValuesMap, RequestMap, RequestMap, RequestParameterMap, RequestParameterMap, RequestParameterValuesMap, RequestParameterValuesMap, SessionMap, SessionMap
- public abstract class AbstractAttributeMap 
- extends AbstractMap
Helper Map implementation for use with different Attribute Maps.
 
 NOTE: This class was copied from myfaces impl 
 org.apache.myfaces.context.servlet and it is
 used by TomahawkFacesContextWrapper. By that reason, it could change
 in the future.
 
- Since:
- 1.1.7
- Version:
- $Revision: 691871 $ $Date: 2008-09-03 23:32:08 -0500 (Wed, 03 Sep 2008) $
- Author:
- Anton Koinov (latest modification by $Author: lu4242 $)
 
 
| Nested classes/interfaces inherited from interface java.util.Map | 
| Map.Entry<K,V> | 
 
 
 
 
 
AbstractAttributeMap
public AbstractAttributeMap()
clear
public void clear()
- 
- Specified by:
- clearin interface- Map
- Overrides:
- clearin class- AbstractMap
 
- 
 
containsKey
public boolean containsKey(Object key)
- 
- Specified by:
- containsKeyin interface- Map
- Overrides:
- containsKeyin class- AbstractMap
 
- 
 
containsValue
public boolean containsValue(Object findValue)
- 
- Specified by:
- containsValuein interface- Map
- Overrides:
- containsValuein class- AbstractMap
 
- 
 
entrySet
public Set entrySet()
- 
- Specified by:
- entrySetin interface- Map
- Specified by:
- entrySetin class- AbstractMap
 
- 
 
get
public Object get(Object key)
- 
- Specified by:
- getin interface- Map
- Overrides:
- getin class- AbstractMap
 
- 
 
isEmpty
public boolean isEmpty()
- 
- Specified by:
- isEmptyin interface- Map
- Overrides:
- isEmptyin class- AbstractMap
 
- 
 
keySet
public Set keySet()
- 
- Specified by:
- keySetin interface- Map
- Overrides:
- keySetin class- AbstractMap
 
- 
 
put
public Object put(Object key,
                  Object value)
- 
- Specified by:
- putin interface- Map
- Overrides:
- putin class- AbstractMap
 
- 
 
putAll
public void putAll(Map t)
- 
- Specified by:
- putAllin interface- Map
- Overrides:
- putAllin class- AbstractMap
 
- 
 
remove
public Object remove(Object key)
- 
- Specified by:
- removein interface- Map
- Overrides:
- removein class- AbstractMap
 
- 
 
size
public int size()
- 
- Specified by:
- sizein interface- Map
- Overrides:
- sizein class- AbstractMap
 
- 
 
values
public Collection values()
- 
- Specified by:
- valuesin interface- Map
- Overrides:
- valuesin class- AbstractMap
 
- 
 
getAttribute
protected abstract Object getAttribute(String key)
- 
 
setAttribute
protected abstract void setAttribute(String key,
                                     Object value)
- 
 
removeAttribute
protected abstract void removeAttribute(String key)
- 
 
getAttributeNames
protected abstract Enumeration getAttributeNames()
- 
 
Copyright © 2012 The Apache Software Foundation. All Rights Reserved.