{
String[] strsChildrenExisting = wrpSynTloEcl.getSortedNamesImage(strIdParent);
String strNameCur = wrpSynTloEcl.getNameImage(strIdChild);
GfrDlgOkTextSaveRename dlg = new GfrDlgOkTextSaveRename(
frmOwner,
strsChildrenExisting,
strNameCur);
if (!dlg.init())
{
String str = "! dlg.init()";
ActPrfPrjRenameOgcEclAbs._LOGGER_.severe(str);
throw new Exception(str);
}
dlg.setVisible(true);
boolean blnCancelled = dlg.isCancelled();
String strNameNew = null;
if (!blnCancelled)
{
strNameNew = dlg.getValue();
}
dlg.destroy();
dlg = null;
if (blnCancelled)
return;