Thanks for taking the time to look at my question.
I am using a Tree map to add data into my system
private static Map employeeMap = new TreeMap();
I have then created employee objects like so
theEmployee = new Employee(randomIDno,fName, sName, gender, dPayLevel);
I then add it to the tree map like this
employeeMap.put(randomIDno,theEmployee);
I would just like to know how to iterate through all the Employee objects contained in this treeMap and print it out to the screen?