| 232 | } |
| 233 | |
| 234 | private class MyEntryMap implements Data.EntryMap<K, V> { |
| 235 | public int size() { |
| 236 | return HashMap.this.size(); |
| 237 | } |
| 238 | |
| 239 | public Entry<K,V> find(Object key) { |
| 240 | return HashMap.this.find(key); |
| 241 | } |
| 242 | |
| 243 | public Entry<K,V> remove(Object key) { |
| 244 | return removeCell(key); |
| 245 | } |
| 246 | |
| 247 | public void clear() { |
| 248 | HashMap.this.clear(); |
| 249 | } |
| 250 | |
| 251 | public Iterator<Entry<K,V>> iterator() { |
| 252 | return HashMap.this.iterator(); |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | interface Cell<K, V> extends Entry<K, V> { |
| 257 | public HashMap.Cell<K, V> next(); |
nothing calls this directly
no outgoing calls
no test coverage detected