home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class TreeMap$1 extends AbstractSet {
- // $FF: synthetic field
- private final TreeMap this$0;
-
- TreeMap$1(TreeMap var1) {
- this.this$0 = var1;
- }
-
- public Iterator iterator() {
- return new TreeMap.Iterator(this.this$0, 0);
- }
-
- public int size() {
- return this.this$0.size();
- }
-
- public boolean contains(Object var1) {
- return this.this$0.containsKey(var1);
- }
-
- public boolean remove(Object var1) {
- int var2 = TreeMap.access$000(this.this$0);
- this.this$0.remove(var1);
- return TreeMap.access$000(this.this$0) != var2;
- }
-
- public void clear() {
- this.this$0.clear();
- }
- }
-