cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package cn.ksource.core;
 
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
 
public class CascadeMap implements Map {
 
    private Map source;
    
    
    public CascadeMap(){
        this.source = new HashMap();
    }
    
    public CascadeMap(Object key,Object value){
        this.source = new HashMap();
        this.source.put(key, value);
    }
    
    public Map getSource() {
        return source;
    }
 
    public void setSource(Map source) {
        this.source = source;
    }
 
    public void clear() {
        this.source.clear();
    }
 
    public boolean containsKey(Object key) {
        return this.source.containsKey(key);
    }
 
    public boolean containsValue(Object value) {
        return this.source.containsValue(value);
    }
 
    public Set entrySet() {
        return this.source.entrySet();
    }
 
    public Object get(Object key) {
        return this.source.get(key);
    }
    
 
    public boolean isEmpty() {
        return this.source.isEmpty();
    }
 
    public Set keySet() {
        return this.source.keySet();
    }
 
    public void putAll(Map m) {
        this.source.putAll(m);
    }
 
    public CascadeMap remove(Object key) {
        this.source.remove(key);
        return this;
    }
    
 
    public int size() {
        return this.source.size();
    }
 
    public Collection values() {
        return this.source.values();
    }
 
    public CascadeMap put(Object key, Object value) {
        this.source.put(key, value);
        return this;
    }
}