import java.util.Hashtable; public class MainClass { public Hashtable makeHash(String start) { class myHash extends Hashtable { public myHash() { super(10); } public void buildHash(String str) { } } // end inner class definition myHash h = new myHash(); h.buildHash(start); return h; } }