//
//
// look for a visible child in this parent.
//
while (foundVisible == false && parent != null) {
Array_Of_JComponent<JComponent> qq_localVector = new Array_Of_JComponent(JComponent.class, parent.getComponents());
if (qq_localVector != null) {
for (JComponent c : qq_localVector) {
if (WidgetState.get(c) != Constants.FS_INVISIBLE) {
foundVisible = true;
break;