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 / TreeMap$SubMap.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  1.7 KB  |  52 lines

  1. package java.util;
  2.  
  3. import java.io.Serializable;
  4.  
  5. class TreeMap$SubMap extends AbstractMap<K, V> implements SortedMap<K, V>, Serializable {
  6.    private static final long serialVersionUID = -6520786458950516097L;
  7.    private boolean fromStart;
  8.    private boolean toEnd;
  9.    private K fromKey;
  10.    private K toKey;
  11.    // $FF: synthetic field
  12.    final TreeMap this$0;
  13.  
  14.    private TreeMap$SubMap(TreeMap var1) {
  15.       this.this$0 = var1;
  16.       this.fromStart = false;
  17.       this.toEnd = false;
  18.    }
  19.  
  20.    private Object readResolve() {
  21.       return new TreeMap.AscendingSubMap(this.this$0, this.fromStart, this.fromKey, true, this.toEnd, this.toKey, false);
  22.    }
  23.  
  24.    public Set<Map.Entry<K, V>> entrySet() {
  25.       throw new InternalError();
  26.    }
  27.  
  28.    public K lastKey() {
  29.       throw new InternalError();
  30.    }
  31.  
  32.    public K firstKey() {
  33.       throw new InternalError();
  34.    }
  35.  
  36.    public SortedMap<K, V> subMap(K var1, K var2) {
  37.       throw new InternalError();
  38.    }
  39.  
  40.    public SortedMap<K, V> headMap(K var1) {
  41.       throw new InternalError();
  42.    }
  43.  
  44.    public SortedMap<K, V> tailMap(K var1) {
  45.       throw new InternalError();
  46.    }
  47.  
  48.    public Comparator<? super K> comparator() {
  49.       throw new InternalError();
  50.    }
  51. }
  52.