String strDate = GfrSimpleDateFormatAll.s_format(vdhCur.getGregCal().getTime());
objss[objsChildren.length - i][0] = vdhCur.getValue();
objss[objsChildren.length - i][1] = strDate;
}
GfrDlgOpenSpaceFromHistoryProject dlg = new GfrDlgOpenSpaceFromHistoryProject(
super._app.getFrame(),
objss);
if (!dlg.init())
{
String str = "! dlg.init()";
GfrAcrSpcAppPrtWrkOgcEclAbs._LOGGER_.severe(str);
throw new Exception(str);
}
dlg.setVisible(true);
boolean blnCancelled = dlg.isCancelled();
String strValue = null;
if (!blnCancelled)
{
strValue = dlg.getValue();
}
dlg.destroy();
dlg = null;
if (blnCancelled)
return; // action cancelled by user