comparison base/src/java/util/AbstractMap.d @ 98:48d4ee626868

rm databinding.observable seems to be duplicate, databinding.beans now building
author Frank Benoit <benoit@tionex.de>
date Wed, 22 Apr 2009 07:30:21 +0200
parents 1bf55a6eb092
children 5d5bd660917f
comparison
equal deleted inserted replaced
97:c86eb8b3098e 98:48d4ee626868
14 } 14 }
15 protected Object clone(){ 15 protected Object clone(){
16 implMissing( __FILE__, __LINE__ ); 16 implMissing( __FILE__, __LINE__ );
17 return null; 17 return null;
18 } 18 }
19 bool containsKey(String key){
20 return containsKey(stringcast(key));
21 }
19 bool containsKey(Object key){ 22 bool containsKey(Object key){
20 implMissing( __FILE__, __LINE__ ); 23 implMissing( __FILE__, __LINE__ );
21 return false; 24 return false;
22 } 25 }
23 bool containsValue(Object value){ 26 bool containsValue(Object value){
31 return cast(equals_t)entrySet().opEquals( cast(Object) other.entrySet() ); 34 return cast(equals_t)entrySet().opEquals( cast(Object) other.entrySet() );
32 } 35 }
33 return false; 36 return false;
34 } 37 }
35 38
39 Object get(String key){
40 return get(stringcast(key));
41 }
36 Object get(Object key){ 42 Object get(Object key){
37 implMissing( __FILE__, __LINE__ ); 43 implMissing( __FILE__, __LINE__ );
38 return null; 44 return null;
39 } 45 }
40 public override hash_t toHash(){ 46 public override hash_t toHash(){
47 } 53 }
48 Set keySet(){ 54 Set keySet(){
49 implMissing( __FILE__, __LINE__ ); 55 implMissing( __FILE__, __LINE__ );
50 return null; 56 return null;
51 } 57 }
58 Object put(String key, String value){
59 return put(stringcast(key),stringcast(value));
60 }
61 Object put(Object key, String value){
62 return put(key,stringcast(value));
63 }
64 Object put(String key, Object value){
65 return put(stringcast(key),value);
66 }
52 Object put(Object key, Object value){ 67 Object put(Object key, Object value){
53 implMissing( __FILE__, __LINE__ ); 68 implMissing( __FILE__, __LINE__ );
54 return null; 69 return null;
55 } 70 }
56 void putAll(Map t){ 71 void putAll(Map t){
57 implMissing( __FILE__, __LINE__ ); 72 implMissing( __FILE__, __LINE__ );
73 }
74 Object remove(String key){
75 return remove(stringcast(key));
58 } 76 }
59 Object remove(Object key){ 77 Object remove(Object key){
60 implMissing( __FILE__, __LINE__ ); 78 implMissing( __FILE__, __LINE__ );
61 return null; 79 return null;
62 } 80 }