Учитывая следующий код, как я могу перебирать объект типа ProfileCollection?
public class ProfileCollection implements Iterable {    
    private ArrayList<Profile> m_Profiles;
    public Iterator<Profile> iterator() {        
        Iterator<Profile> iprof = m_Profiles.iterator();
        return iprof; 
    }
    ...
    public Profile GetActiveProfile() {
        return (Profile)m_Profiles.get(m_ActiveProfile);
    }
}
public static void main(String[] args) {
     m_PC = new ProfileCollection("profiles.xml");
     // properly outputs a profile:
     System.out.println(m_PC.GetActiveProfile()); 
     // not actually outputting any profiles:
     for(Iterator i = m_PC.iterator();i.hasNext();) {
        System.out.println(i.next());
     }
     // how I actually want this to work, but won't even compile:
     for(Profile prof: m_PC) {
        System.out.println(prof);
     }
}