Package org.geoforge.guillcogc.menuitem

Source Code of org.geoforge.guillcogc.menuitem.GfrMimTrsAlrDisplayWmsNoWwdEarthFolderSec

/*
*  Copyright (C) 2011-2014 GeoForge Project
*
*  This program is free software; you can redistribute it and/or
*  modify it under the terms of the GNU Lesser General Public License
*  as published by the Free Software Foundation; either version 2
*  of the License, or (at your option) any later version.
*
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU Lesser General Public License for more details.
*
*  You should have received a copy of the GNU Lesser General Public License
*  along with this program; if not, write to the Free Software
*  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/
package org.geoforge.guillcogc.menuitem;

import java.awt.event.ActionListener;
import java.util.Observable;
import java.util.Observer;
import java.util.logging.Logger;
import org.geoforge.guillc.optionpane.GfrOptionPaneAbs;
import org.geoforge.java.util.logging.filehandler.FileHandlerLogger;
import org.geoforge.mdldsp.event.state.multiple.GfrEvtMdlTogMltSecCbx;
import org.geoforge.mdldsp.state.multiple.GfrMdlTogMltSecCbx;
import org.geoforge.wrpbasprsdsp.state.multiple.run.GfrWrpBasPrsDspPrjObjSecMltTogCbx;
import org.geoforge.wrpbasprssynogc.GfrWrpBasTopSynOgcWmss;
import org.geoforge.wrpbasprssynogc.GfrWrpBasSynObjNameTloWms;


/**
*
* @author bantchao
*/
public class GfrMimTrsAlrDisplayWmsNoWwdEarthFolderSec extends GfrMimTrsAlrDisplayWmsNoWwdEarthFolderAbs
{
   // ----
    // begin: instantiate logger for this class
    final private static Logger _LOGGER_ = Logger.getLogger(GfrMimTrsAlrDisplayWmsNoWwdEarthFolderSec.class.getName());

    static
    {
        GfrMimTrsAlrDisplayWmsNoWwdEarthFolderSec._LOGGER_.addHandler(FileHandlerLogger.s_getInstance());
    }

    // end: instantiate logger for this class
    // ----
   
   private String _strIdViewer_ = null
  
   public GfrMimTrsAlrDisplayWmsNoWwdEarthFolderSec(
           String strId,
           String strIdTlo,
           String strIdViewer)
           throws Exception
   {
      super(strId, strIdTlo);
     
      this._strIdViewer_ = strIdViewer;
      GfrMdlTogMltSecCbx.getInstance().addObserver((Observer) this);
      _update();
   }
  
   @Override
   protected void _update() throws Exception
   {
      String strs[] = GfrWrpBasSynObjNameTloWms.getInstance().getAllIdsLayerLeafFromFolderLayer(super.getId());
     
      if (strs==null || strs.length<1)
      {
         super.setEnabled(false);
         return;
      }
     
      for (int i=0; i<strs.length; i++)
      {
         boolean bln = GfrWrpBasPrsDspPrjObjSecMltTogCbx.getInstance().isEnabled(this._strIdViewer_, strs[i]);
        
         if (bln)
         {
            super.setEnabled(true);
            return;
         }
      }
     
      super.setEnabled(false);
   }
  
   @Override
    public void destroy()
    {
       super.destroy();
      
       GfrMdlTogMltSecCbx.getInstance().deleteObserver((Observer) this);
    }

   @Override
   public void update(Observable obs, Object objEvt)
   {
      try
      {
         if (objEvt instanceof GfrEvtMdlTogMltSecCbx)
         {
            GfrEvtMdlTogMltSecCbx evt = (GfrEvtMdlTogMltSecCbx) objEvt;
           
            String strIdViewer = evt.getKeyViewer();
           
            if (strIdViewer.compareTo(this._strIdViewer_) != 0)
               return;

            String strIdObject = evt.getKeyObject();
           
            // if is tlo, return
            if (GfrWrpBasTopSynOgcWmss.getInstance().containsTlo(strIdObject))
               return;
           
            // if not a children, return;
            // by-passing terrains
            if (! GfrWrpBasSynObjNameTloWms.getInstance().containsLayerLeafInLayerFolder(super.getId(), strIdObject))
               return;
           
            _update();
            return;
         }
      }
     
      catch(Exception exc)
      {
         exc.printStackTrace();
         String str = exc.getMessage();
         GfrMimTrsAlrDisplayWmsNoWwdEarthFolderSec._LOGGER_.severe(str);
         GfrOptionPaneAbs.s_showDialogError(null, str);
         return;
      }
     
     
      super.update(obs, objEvt);
   }
  

   @Override
   protected void _doJob() throws Exception
   {
      String[] strs = GfrWrpBasSynObjNameTloWms.getInstance().getAllIdsLayerLeafFromFolderLayer(super.getId());
     
      // TODO: optimize this code!
      for (int i=0; i<strs.length; i++)
         GfrMdlTogMltSecCbx.getInstance().doJob(this._strIdViewer_, strs[i], false);
   }
}
TOP

Related Classes of org.geoforge.guillcogc.menuitem.GfrMimTrsAlrDisplayWmsNoWwdEarthFolderSec

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.