Suppose I have this:
public class Unit { ... List mobileSuits; List pilots; ... }
for(int i=0; i < mobileSuits.size(); i++) { MobileSuit suit = mobileSuits.get(i); Pilot pilot = pilots.get(i); ... }