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
82
83
84
85
86
87
|
/* readonlymap.vala
*
* Copyright (C) 2007 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Jürg Billeter <j@bitron.ch>
*/
using GLib;
/**
* Represents a read-only collection of key/value pairs.
*/
public class Gee.ReadOnlyMap<K,V> : Object, Map<K,V> {
public int size {
get { return _map.size; }
}
public Map<K,V> map {
set { _map = value; }
}
private Map<K,V> _map;
public ReadOnlyMap (construct Map<K,V> map = null) {
}
public Set<K> get_keys () {
if (_map == null) {
return new ReadOnlySet<K> ();
}
return _map.get_keys ();
}
public Collection<V> get_values () {
if (_map == null) {
return new ReadOnlyCollection<V> ();
}
return _map.get_values ();
}
public bool contains (K key) {
if (_map == null) {
return false;
}
return _map.contains (key);
}
public V get (K key) {
if (_map == null) {
return null;
}
return _map.get (key);
}
public void set (K key, V value) {
assert_not_reached ();
}
public bool remove (K key) {
assert_not_reached ();
return false;
}
public void clear () {
assert_not_reached ();
}
}
|