Examples of GfrMimActPlg


Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

      {
         Action[] acts = plg.createActionsPluginControlCategoryEarthShapesManager();
        
         for (int i=0; i<acts.length; i++)
         {
            GfrMimAbs mimCur = new GfrMimActPlg(acts[i], plg);

            if (! mimCur.init())
            {
               String strWhat = "! mimCur.init()";
               throw new Exception(strWhat);
            }
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

         JFrame frmMainApp = GfrFrmAbs.s_getFrameOwner(GfrPnlStatusBarMain.s_getInstance());
         Action[] acts = plg.createActionsPluginTloImageGalleryAreaRun(super._strIdTlo, frmMainApp);

         for (Action actCur: acts)
         {
            GfrMimAbs mimCur = new GfrMimActPlg(actCur, plg);

            if (! mimCur.init())
            {
               String strWhat = "! mimCur.init()";
               GfrMenPlgsSpotActTloImgsAreRunAbs._LOGGER_.warning(strWhat);
               super._showDialogFailedPlugin(plg, strWhat);
               return false;
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

         JFrame frmMainApp = GfrFrmAbs.s_getFrameOwner(GfrPnlStatusBarMain.s_getInstance());
         Action[] acts = plg.createActionsPluginTloImageGallerySectorMan(super._strIdTlo, frmMainApp);

         for (Action actCur: acts)
         {
            GfrMimAbs mimCur = new GfrMimActPlg(actCur, plg);
           
            if (! mimCur.init())
            {
               String strWhat = "! mimCur.init()";
               GfrMenPlgsSpotActTloImgsSctManAbs._LOGGER_.warning(strWhat);
               super._showDialogFailedPlugin(plg, strWhat);
               return false;
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

         JFrame frmMainApp = GfrFrmAbs.s_getFrameOwner(GfrPnlStatusBarMain.s_getInstance());
         Action[] acts = plg.createActionsPluginTloImageGallerySectorRun(super._strIdTlo, frmMainApp);

         for (Action actCur: acts)
         {
            GfrMimAbs mimCur = new GfrMimActPlg(actCur, plg);

            if (! mimCur.init())
            {
               String strWhat = "! mimCur.init()";
               GfrMenPlgsSpotActTloImgsSctRunAbs._LOGGER_.warning(strWhat);
               super._showDialogFailedPlugin(plg, strWhat);
               return false;
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

   protected boolean _addValidated(IGfrHandlerPluginActionTloEclSctMan plg)
   {
      try
      {
         Action act = plg.createActionPluginTloSectorEarthShapeManage(super._strIdTlo);
         GfrMimAbs mim = new GfrMimActPlg(act, plg);

        if (! mim.init())
        {
            String strWhat = "! mim.init()";
            throw new Exception(strWhat);
        }
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

         JFrame frmMainApp = GfrFrmAbs.s_getFrameOwner(GfrPnlStatusBarMain.s_getInstance());
         Action[] acts = plg.createActionsPluginTloImageGalleryAreaSec(super._strIdTlo, frmMainApp, this._strIdViewer_);

         for (Action actCur: acts)
         {
            GfrMimAbs mimCur = new GfrMimActPlg(actCur, (IGfrHandlerPlugin) plg);
           
            if (! mimCur.init())
            {
               String strWhat = "! mimCur.init()";
               GfrMenPlgsSpotActTloImgsAreSecAbs._LOGGER_.warning(strWhat);
               super._showDialogFailedPlugin(plg, strWhat);
               return false;
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

   protected boolean _addValidated(IGfrHandlerPluginActionTloEclPntMan plg)
   {
      try
      {
         Action act = plg.createActionPluginTloPointEarthShapeManage(super._strIdTlo);
         GfrMimAbs mim = new GfrMimActPlg(act, plg);

        if (! mim.init())
        {
            String strWhat = "! mim.init()";
            throw new Exception(strWhat);
        }
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

         JFrame frmMainApp = GfrFrmAbs.s_getFrameOwner(GfrPnlStatusBarMain.s_getInstance());
         Action[] acts = plg.createActionsPluginTloImageGalleryAreaMan(super._strIdTlo, frmMainApp);

         for (Action actCur: acts)
         {
            GfrMimAbs mimCur = new GfrMimActPlg(actCur, plg);
           
            if (! mimCur.init())
            {
               String strWhat = "! mimCur.init()";
               GfrMenPlgsSpotActTloImgsAreManAbs._LOGGER_.warning(strWhat);
               super._showDialogFailedPlugin(plg, strWhat);
               return false;
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

         JFrame frmMainApp = GfrFrmAbs.s_getFrameOwner(GfrPnlStatusBarMain.s_getInstance());
         Action[] acts = plg.createActionsPluginTloImageGallerySectorSec(super._strIdTlo, frmMainApp, this._strIdViewer_);

         for (Action actCur: acts)
         {
            GfrMimAbs mimCur = new GfrMimActPlg(actCur, (IGfrHandlerPlugin) plg);
           
            if (! mimCur.init())
            {
               String strWhat = "! mimCur.init()";
               GfrMenPlgsSpotActTloImgsSctSecAbs._LOGGER_.warning(strWhat);
               super._showDialogFailedPlugin(plg, strWhat);
               return false;
View Full Code Here

Examples of org.geoforge.guillc.menuitem.GfrMimActPlg

   {
      HashSet<GfrMimActPlg> hstMimToRemove = new HashSet<GfrMimActPlg>();
     
      for (int i=0; i<super.getMenuComponentCount(); i++)
      {
         GfrMimActPlg mimCur = (GfrMimActPlg) super.getMenuComponent(i);
        
         if (plg != mimCur.getPlugin())
            continue;
        
         hstMimToRemove.add(mimCur);
      }
     
      if (hstMimToRemove.isEmpty())
      {
         hstMimToRemove = null; // gc
         return;
      }
     
      for (GfrMimActPlg mimCur: hstMimToRemove)
      {
         super.remove(mimCur);
         mimCur.destroy();
      }
     
      if (super.getMenuComponentCount() < 1)
         super.setEnabled(false);
     
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.