package java.util; import checkers.javari.quals.*; public class BitSet implements Cloneable, java.io.Serializable { private static final long serialVersionUID = 0L; public BitSet() { throw new RuntimeException(("skeleton method")); } public BitSet(int a1) { throw new RuntimeException(("skeleton method")); } public void flip(int a1) { throw new RuntimeException(("skeleton method")); } public void flip(int a1, int a2) { throw new RuntimeException(("skeleton method")); } public void set(int a1) { throw new RuntimeException(("skeleton method")); } public void set(int a1, boolean a2) { throw new RuntimeException(("skeleton method")); } public void set(int a1, int a2) { throw new RuntimeException(("skeleton method")); } public void set(int a1, int a2, boolean a3) { throw new RuntimeException(("skeleton method")); } public void clear(int a1) { throw new RuntimeException(("skeleton method")); } public void clear(int a1, int a2) { throw new RuntimeException(("skeleton method")); } public void clear() { throw new RuntimeException(("skeleton method")); } public boolean get(int a1) @ReadOnly { throw new RuntimeException(("skeleton method")); } public BitSet get(int a1, int a2) @ReadOnly { throw new RuntimeException(("skeleton method")); } public int nextSetBit(int a1) @ReadOnly { throw new RuntimeException(("skeleton method")); } public int nextClearBit(int a1) @ReadOnly { throw new RuntimeException(("skeleton method")); } public int length() @ReadOnly { throw new RuntimeException(("skeleton method")); } public boolean isEmpty() @ReadOnly { throw new RuntimeException(("skeleton method")); } public boolean intersects(BitSet a1) @ReadOnly { throw new RuntimeException(("skeleton method")); } public int cardinality() @ReadOnly { throw new RuntimeException(("skeleton method")); } public void and(@ReadOnly BitSet a1) { throw new RuntimeException(("skeleton method")); } public void or(@ReadOnly BitSet a1) { throw new RuntimeException(("skeleton method")); } public void xor(@ReadOnly BitSet a1) { throw new RuntimeException(("skeleton method")); } public void andNot(@ReadOnly BitSet a1) { throw new RuntimeException(("skeleton method")); } public int hashCode() @ReadOnly{ throw new RuntimeException(("skeleton method")); } public int size() @ReadOnly { throw new RuntimeException(("skeleton method")); } public boolean equals(@ReadOnly Object a1) @ReadOnly { throw new RuntimeException(("skeleton method")); } public Object clone() @ReadOnly { throw new RuntimeException(("skeleton method")); } public String toString() @ReadOnly{ throw new RuntimeException(("skeleton method")); } }