I\'m trying to create a Hashtable as in the following:
Hashtable> block = new Hashtable>();
You can use Integer instead of int and if you're using java 1.5+ the boxing/unboxing feature will make your life easy when working with it.
Hashtable block = new Hashtable();