import java.awt.Point;
import java.util.Iterator;
import java.util.Map;
import java.util.TreeMap;

public class Main {

    public static void main(String[] argv) {

        TreeMap<String, Test> a;
        a = new TreeMap<String, Test>();
        a.put("10100", new Test(new Point(1, 2)));
        Iterator<String> b = a.keySet().iterator();
        Iterator<Test> c = a.values().iterator();



    }
}

-- 
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/javaprogrammingwithpassion?hl=en

Reply via email to