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.Map
A Map interface on top ofVariableResolver
.Available in ZK EE
- Since:
- 3.0.0
- Author:
- tomyeh
-
-
Constructor Summary
Constructors Constructor Description ResolverMap(VariableResolver resolver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(java.lang.Object key)
boolean
containsValue(java.lang.Object value)
Always returns false, no matter any variable is defined.java.util.Set
entrySet()
Always returns an empty set, no matter any variable is defined.java.lang.Object
get(java.lang.Object key)
boolean
isEmpty()
Always returns true, no matter any variable is defined.java.util.Set
keySet()
Always returns an empty set, no matter any variable is defined.java.lang.Object
put(java.lang.Object key, java.lang.Object value)
void
putAll(java.util.Map map)
java.lang.Object
remove(java.lang.Object key)
int
size()
Always returns 0, no matter any variable is defined.java.util.Collection
values()
Always returns an empty collection, no matter any variable is defined.
-
-
-
Constructor Detail
-
ResolverMap
public ResolverMap(VariableResolver resolver)
-
-
Method Detail
-
containsKey
public boolean containsKey(java.lang.Object key)
- Specified by:
containsKey
in interfacejava.util.Map
-
get
public java.lang.Object get(java.lang.Object key)
- Specified by:
get
in interfacejava.util.Map
-
entrySet
public java.util.Set entrySet()
Always returns an empty set, no matter any variable is defined.- Specified by:
entrySet
in interfacejava.util.Map
-
clear
public void clear()
- Specified by:
clear
in interfacejava.util.Map
-
containsValue
public boolean containsValue(java.lang.Object value)
Always returns false, no matter any variable is defined.- Specified by:
containsValue
in interfacejava.util.Map
-
isEmpty
public boolean isEmpty()
Always returns true, no matter any variable is defined.- Specified by:
isEmpty
in interfacejava.util.Map
-
keySet
public java.util.Set keySet()
Always returns an empty set, no matter any variable is defined.- Specified by:
keySet
in interfacejava.util.Map
-
put
public java.lang.Object put(java.lang.Object key, java.lang.Object value)
- Specified by:
put
in interfacejava.util.Map
-
putAll
public void putAll(java.util.Map map)
- Specified by:
putAll
in interfacejava.util.Map
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
remove
in interfacejava.util.Map
-
size
public int size()
Always returns 0, no matter any variable is defined.- Specified by:
size
in interfacejava.util.Map
-
values
public java.util.Collection values()
Always returns an empty collection, no matter any variable is defined.- Specified by:
values
in interfacejava.util.Map
-
-