home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / util / HashMap$1.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  790 b   |  33 lines

  1. package java.util;
  2.  
  3. class HashMap$1 extends AbstractSet {
  4.    // $FF: synthetic field
  5.    private final HashMap this$0;
  6.  
  7.    HashMap$1(HashMap var1) {
  8.       this.this$0 = var1;
  9.    }
  10.  
  11.    public Iterator iterator() {
  12.       return HashMap.access$000(this.this$0, 0);
  13.    }
  14.  
  15.    public int size() {
  16.       return HashMap.access$100(this.this$0);
  17.    }
  18.  
  19.    public boolean contains(Object var1) {
  20.       return this.this$0.containsKey(var1);
  21.    }
  22.  
  23.    public boolean remove(Object var1) {
  24.       int var2 = HashMap.access$100(this.this$0);
  25.       this.this$0.remove(var1);
  26.       return HashMap.access$100(this.this$0) != var2;
  27.    }
  28.  
  29.    public void clear() {
  30.       this.this$0.clear();
  31.    }
  32. }
  33.