View Javadoc

1   /*
2    * 
3    * 
4    */
5   package net.sf.diaz;
6   
7   import java.util.Map;
8   
9   /**
10   * 
11   * @author Sean C. Sullivan
12   *
13   * 
14   * 
15   */
16  interface IndexedMap<K,V> extends Map<K,V>
17  {
18  	public V get(int i);
19  }