home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / util / EnumMap$Values.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  1.2 KB  |  46 lines

  1. package java.util;
  2.  
  3. class EnumMap$Values extends AbstractCollection<V> {
  4.    // $FF: synthetic field
  5.    final EnumMap this$0;
  6.  
  7.    private EnumMap$Values(EnumMap var1) {
  8.       this.this$0 = var1;
  9.    }
  10.  
  11.    public Iterator<V> iterator() {
  12.       return new EnumMap.ValueIterator(this.this$0, (EnumMap.1)null);
  13.    }
  14.  
  15.    public int size() {
  16.       return EnumMap.access$200(this.this$0);
  17.    }
  18.  
  19.    public boolean contains(Object var1) {
  20.       return this.this$0.containsValue(var1);
  21.    }
  22.  
  23.    public boolean remove(Object var1) {
  24.       var1 = EnumMap.access$500(this.this$0, var1);
  25.  
  26.       for(int var2 = 0; var2 < EnumMap.access$600(this.this$0).length; ++var2) {
  27.          if (var1.equals(EnumMap.access$600(this.this$0)[var2])) {
  28.             EnumMap.access$600(this.this$0)[var2] = null;
  29.             EnumMap.access$210(this.this$0);
  30.             return true;
  31.          }
  32.       }
  33.  
  34.       return false;
  35.    }
  36.  
  37.    public void clear() {
  38.       this.this$0.clear();
  39.    }
  40.  
  41.    // $FF: synthetic method
  42.    EnumMap$Values(EnumMap var1, EnumMap.1 var2) {
  43.       this(var1);
  44.    }
  45. }
  46.