JComponent child = (JComponent)e.getChild();
// TF:12/10/07:Don't allow the registration of focus events on an array, the array will fire these for itself.
if (child instanceof ArrayField || ArrayFieldCellHelper.getArrayField(child) != null) {
return;
}
child.removeContainerListener(this);
child.addContainerListener(this);
ChildEventHelper.installOnAllChildren((JComponent)e.getChild(), cAFTER_FOCUS_GAIN, this);
}
}