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 TreeSet extends AbstractSet implements SortedSet,
09: Cloneable, Serializable {
10: public TreeSet() {
11: }
12:
13: public TreeSet(Comparator comparator) {
14: }
15:
16: public TreeSet(Collection collection) {
17: }
18:
19: public TreeSet(SortedSet sortedSet) {
20: }
21:
22: private TreeSet(SortedMap backingMap) {
23: }
24:
25: public boolean add(Object obj) {
26: }
27:
28: public boolean addAll(Collection c) {
29: }
30:
31: public void clear() {
32: }
33:
34: public Object clone() {
35: }
36:
37: public Comparator comparator() {
38: }
39:
40: public boolean contains(Object obj) {
41: }
42:
43: public Object first() {
44: }
45:
46: public SortedSet headSet(Object to) {
47: }
48:
49: public boolean isEmpty() {
50: }
51:
52: public Iterator iterator() {
53: }
54:
55: public Object last() {
56: }
57:
58: public boolean remove(Object obj) {
59: }
60:
61: public int size() {
62: }
63:
64: public SortedSet subSet(Object from, Object to) {
65: }
66:
67: public SortedSet tailSet(Object from) {
68: }
69:
70: private void writeObject(ObjectOutputStream s) throws IOException {
71: }
72:
73: private void readObject(ObjectInputStream s) throws IOException,
74: ClassNotFoundException {
75: }
76: }
|