<0> for (Object key : tehTable.keys()) { Object thing = tehTable.get(key); } <0> Something to that effect.
<1> i don't think that will work on java 1.4 <2> it will <0> You just have to change the loop structure <2> well not with that loop <2> but the essential idea work in 1.4 as well <1> can you please ilustrate it a little more? <0> Enumeration theKeys = tehTable.keys(); while (theKeys.hasMoreElements()) { Object key = theKeys.nextElement(); .... }
<1> oh <1> I see. <1> Thanks a lot guys <1> =) <0> np