Examples of GfrDlgOpenSpaceFromHistoryProject


Examples of org.geoforge.guillc.dialog.GfrDlgOpenSpaceFromHistoryProject

         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
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.