@Override
public void actionPerformed(ActionEvent e)
{
try
{
GfrDlgCmdCancelOkEdtUrlAbs dlg = new GfrDlgCmdCancelOkEdtUrlGeojson();
if (!dlg.init())
{
throw new Exception("! dlg.init()");
}
dlg.setVisible(true);
boolean blnCancelled = dlg.isCancelled();
String strValue = null;
if (!blnCancelled)
{
strValue = dlg.getValue();
}
dlg.destroy();
dlg = null;
if (blnCancelled)
return;