// concurrent modification protection
public int _stamp = 0;
- public Iterator (ArrayList list) {
+ public Iterator (ArrayList<G> list) {
this.list = list;
}
private HashMap<K,V> _map;
- public KeySet (HashMap map) {
+ public KeySet (HashMap<K,V> map) {
this.map = map;
}
// concurrent modification protection
private int _stamp;
- public MapIterator (HashMap map) {
+ public MapIterator (HashMap<K,V> map) {
this.map = map;
}
// concurrent modification protection
private int _stamp;
- public KeyIterator (HashMap map) {
+ public KeyIterator (HashMap<K,V> map) {
this.map = map;
}
private HashMap<K,V> _map;
- public ValueCollection (HashMap map) {
+ public ValueCollection (HashMap<K,V> map) {
this.map = map;
}
// concurrent modification protection
private int _stamp;
- public ValueIterator (HashMap map) {
+ public ValueIterator (HashMap<K,V> map) {
this.map = map;
}
// concurrent modification protection
private int _stamp = 0;
- public Iterator (HashSet set) {
+ public Iterator (HashSet<G> set) {
this.set = set;
}