01: package java.util;
02:
03: import java.io.IOException;
04: import java.io.ObjectInputStream;
05: import java.io.ObjectOutputStream;
06: import java.io.Serializable;
07:
08: public class HashSet extends AbstractSet implements Set, Cloneable,
09: Serializable {
10: public HashSet() {
11: }
12:
13: public HashSet(int initialCapacity) {
14: }
15:
16: public HashSet(int initialCapacity, float loadFactor) {
17: }
18:
19: public HashSet(Collection c) {
20: }
21:
22: public boolean add(Object o) {
23: }
24:
25: public void clear() {
26: }
27:
28: public Object clone() {
29: }
30:
31: public boolean contains(Object o) {
32: }
33:
34: public boolean isEmpty() {
35: }
36:
37: public Iterator iterator() {
38: }
39:
40: public boolean remove(Object o) {
41: }
42:
43: public int size() {
44: }
45:
46: HashMap init(int capacity, float load) {
47: }
48:
49: private void writeObject(ObjectOutputStream s) throws IOException {
50: }
51:
52: private void readObject(ObjectInputStream s) throws IOException,
53: ClassNotFoundException {
54: }
55: }
|