}
public Component add(String strWhat, Component cmp, int intIndex)
{
GfrTpe tpe = new GfrTpe((PropertyChangeListener) this, strWhat);
if (! tpe.init())
{
String str = "! tpe.init()";
GfrTpc._LOGGER_.severe(str);
GfrOptionPaneAbs.s_showDialogError(null, str);
System.exit(1);
}
tpe.add(cmp);
super.add(tpe, intIndex);
return tpe;
}