| 11 | package java.util; |
| 12 | |
| 13 | public abstract class AbstractMap<K, V> |
| 14 | implements Map<K, V> |
| 15 | { |
| 16 | protected AbstractMap() |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | public abstract Set<Map.Entry<K, V>> entrySet(); |
| 21 | |
| 22 | /** |
| 23 | * {@inheritDoc} |
| 24 | * @since 2018/11/05 |
| 25 | */ |
| 26 | @Override |
| 27 | public void clear() |
| 28 | { |
| 29 | this.entrySet().clear(); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * {@inheritDoc} |
| 34 | * @since 2018/12/07 |
| 35 | */ |
| 36 | @Override |
| 37 | protected Object clone() |
| 38 | throws CloneNotSupportedException |
| 39 | { |
| 40 | return (AbstractMap<?, ?>)super.clone(); |
| 41 | } |
| 42 | |
| 43 | public boolean containsKey(Object __a) |
| 44 | { |
| 45 | throw new todo.TODO(); |
| 46 | } |
| 47 | |
| 48 | public boolean containsValue(Object __a) |
| 49 | { |
| 50 | throw new todo.TODO(); |
| 51 | } |
| 52 | |
| 53 | @Override |
| 54 | public boolean equals(Object __a) |
| 55 | { |
| 56 | throw new todo.TODO(); |
| 57 | } |
| 58 | |
| 59 | public V get(Object __a) |
| 60 | { |
| 61 | throw new todo.TODO(); |
| 62 | } |
| 63 | |
| 64 | @Override |
| 65 | public int hashCode() |
| 66 | { |
| 67 | throw new todo.TODO(); |
| 68 | } |
| 69 | |
| 70 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected