* find the component in the list and return the next one
*/
CircularList partners = getPartners((JComponent)comp);
if (partners == null) return null;
if (partners.find(comp)){
partners.move();
return (JComponent)partners.current();
}
return null;
}
public static CircularList getPartners(Component comp){