Example #1
0
 public HashMapValues(HashMap map)
 {
     this.map = map;
 }
Example #2
0
 public EntrySet(HashMap theMap)
 {
     _map = theMap;
 }
Example #3
0
 public EntryEnumerator(HashMap h) : base(h)
 {
 }
Example #4
0
 public KeyEnumerator(HashMap h) : base(h)
 {
 }
Example #5
0
 public ValueEnumerator(HashMap h) : base(h)
 {
 }
Example #6
0
 public HashMapKeys(HashMap map)
 {
     this.map = map;
 }