package java.util; import checkers.igj.quals.*; @I public class IdentityHashMap<K, V> extends @I AbstractMap<K, V> implements @I Map<K, V>, @I java.io.Serializable, @I Cloneable { private static final long serialVersionUID = 0L; public IdentityHashMap() @AssignsFields { throw new RuntimeException("skeleton method"); } public IdentityHashMap(int a1) @AssignsFields { throw new RuntimeException("skeleton method"); } public IdentityHashMap(@ReadOnly Map<? extends K, ? extends V> a1) @AssignsFields { throw new RuntimeException("skeleton method"); } public int size() @ReadOnly { throw new RuntimeException("skeleton method"); } public boolean isEmpty() @ReadOnly { throw new RuntimeException("skeleton method"); } public V get(@ReadOnly Object a1) @ReadOnly { throw new RuntimeException("skeleton method"); } public boolean containsKey(@ReadOnly Object a1) @ReadOnly { throw new RuntimeException("skeleton method"); } public boolean containsValue(@ReadOnly Object a1) @ReadOnly { throw new RuntimeException("skeleton method"); } public V put(K a1, V a2) @Mutable { throw new RuntimeException("skeleton method"); } public void putAll(@ReadOnly Map<? extends K, ? extends V> a1) @Mutable { throw new RuntimeException("skeleton method"); } public V remove(@ReadOnly Object a1) @Mutable { throw new RuntimeException("skeleton method"); } public void clear() @ReadOnly { throw new RuntimeException("skeleton method"); } public boolean equals(@ReadOnly Object a1) @ReadOnly { throw new RuntimeException("skeleton method"); } public int hashCode() @ReadOnly { throw new RuntimeException("skeleton method"); } public @I Set<K> keySet() @ReadOnly { throw new RuntimeException("skeleton method"); } public @I Collection<V> values() @ReadOnly { throw new RuntimeException("skeleton method"); } public @I Set<@I Map.Entry<K, V>> entrySet() @ReadOnly { throw new RuntimeException("skeleton method"); } public @I("N") Object clone() { throw new RuntimeException("skeleton method"); } }