Package org.zkoss.zkmax.xel.util
Class ResolverMap
- java.lang.Object
-
- org.zkoss.zkmax.xel.util.ResolverMap
-
- All Implemented Interfaces:
java.util.Map
public class ResolverMap extends java.lang.Object implements java.util.MapA Map interface on top ofVariableResolver.Available in ZK EE
- Since:
- 3.0.0
- Author:
- tomyeh
-
-
Constructor Summary
Constructors Constructor Description ResolverMap(org.zkoss.xel.VariableResolver resolver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(java.lang.Object key)booleancontainsValue(java.lang.Object value)Always returns false, no matter any variable is defined.java.util.SetentrySet()Always returns an empty set, no matter any variable is defined.java.lang.Objectget(java.lang.Object key)booleanisEmpty()Always returns true, no matter any variable is defined.java.util.SetkeySet()Always returns an empty set, no matter any variable is defined.java.lang.Objectput(java.lang.Object key, java.lang.Object value)voidputAll(java.util.Map map)java.lang.Objectremove(java.lang.Object key)intsize()Always returns 0, no matter any variable is defined.java.util.Collectionvalues()Always returns an empty collection, no matter any variable is defined.
-
-
-
Method Detail
-
containsKey
public boolean containsKey(java.lang.Object key)
- Specified by:
containsKeyin interfacejava.util.Map
-
get
public java.lang.Object get(java.lang.Object key)
- Specified by:
getin interfacejava.util.Map
-
entrySet
public java.util.Set entrySet()
Always returns an empty set, no matter any variable is defined.- Specified by:
entrySetin interfacejava.util.Map
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Map
-
containsValue
public boolean containsValue(java.lang.Object value)
Always returns false, no matter any variable is defined.- Specified by:
containsValuein interfacejava.util.Map
-
isEmpty
public boolean isEmpty()
Always returns true, no matter any variable is defined.- Specified by:
isEmptyin interfacejava.util.Map
-
keySet
public java.util.Set keySet()
Always returns an empty set, no matter any variable is defined.- Specified by:
keySetin interfacejava.util.Map
-
put
public java.lang.Object put(java.lang.Object key, java.lang.Object value)- Specified by:
putin interfacejava.util.Map
-
putAll
public void putAll(java.util.Map map)
- Specified by:
putAllin interfacejava.util.Map
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
removein interfacejava.util.Map
-
size
public int size()
Always returns 0, no matter any variable is defined.- Specified by:
sizein interfacejava.util.Map
-
values
public java.util.Collection values()
Always returns an empty collection, no matter any variable is defined.- Specified by:
valuesin interfacejava.util.Map
-
-