if (strStateOrbitViewSource != null)
{
GfrSerializeStateWwdMan.s_write(strStateOrbitViewSource);
}
GfrDlgCmdCancelBldObjWwdEarthAbs dlg = new GfrDlgBldObjWwdEarthPikShpSegWiseYesManGsi(
GfrResBundleGuiLlcOgcEcl.s_getInstance().getValue("sentence.newWiseSegmentByPicking"),
GfrResBundleLang.s_getInstance().getValue("sentence.wiseSegment"));
if (!dlg.init())
{
String str = "! dlg.init()";
ActPrfPrjConstructOgcEclGsi._LOGGER_.severe(str);
throw new Exception(str);
}
dlg.setVisible(true);
boolean blnCancelledPicks = dlg.isCancelled();
ArrayList<LatLon> alt = null;
if (!blnCancelledPicks)
alt = (ArrayList<LatLon>) dlg.getValue();
dlg.destroy();
dlg = null;
if (blnCancelledPicks)
return;