Package org.geoforge.guillc.wwd.rlrs

Source Code of org.geoforge.guillc.wwd.rlrs.GfrSetRlrTopSecAbs

/*
*  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.guillc.wwd.rlrs;

import gov.nasa.worldwind.awt.WorldWindowGLCanvas;
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.event.state.singleton.selecttlo.GfrEvtMdlSttSngSelTlo;
import org.geoforge.mdldsp.state.multiple.GfrMdlTogMltSecCbx;
import org.geoforge.mdldsp.state.singleton.selecttlo.GfrMdlSttSngSelTlo;

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

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

    // end: instantiate logger for this class
    // ----
   
   protected String _strIdViewer = null;
  

   abstract protected boolean _selectObject(String strIdObjectTlo, boolean bln) throws Exception;
  
  
   protected GfrSetRlrTopSecAbs(WorldWindowGLCanvas cnv, String strIdViewer)
   {
      super(cnv);
     
      this._strIdViewer = strIdViewer;
     
      GfrMdlSttSngSelTlo.getInstance().addObserver((Observer) this);
      GfrMdlTogMltSecCbx.getInstance().addObserver((Observer) this);
   }
  
   @Override
    public void destroy()
    {
       GfrMdlSttSngSelTlo.getInstance().deleteObserver((Observer) this);
       GfrMdlTogMltSecCbx.getInstance().deleteObserver((Observer) this);
      
       super.destroy();
    }
  
   @Override
   public void update(Observable obs, Object objEvt)
   {
      try
      {
         if (objEvt instanceof GfrEvtMdlTogMltSecCbx)
         {
            GfrEvtMdlTogMltSecCbx evt = (GfrEvtMdlTogMltSecCbx) objEvt;
           
            String strIdViewer = evt.getKeyViewer();
           
            if (strIdViewer.compareTo(_strIdViewer) != 0)
               return;
           
            String strIdObject = evt.getKeyObject();
            boolean blnValue = evt.getValueObject();
         
            _selectObject(strIdObject, blnValue);

            // ending
            return;
         }
        
        
         if (objEvt instanceof GfrEvtMdlSttSngSelTlo)
         {
            GfrEvtMdlSttSngSelTlo evt = (GfrEvtMdlSttSngSelTlo) objEvt;
            String strIdObjectTlo = evt.getKey();
         

            _selectObject(strIdObjectTlo, evt.getValue());

            // ending
            return;
         }
      }
     
      catch (Exception exc)
      {
         exc.printStackTrace();
         String str = exc.getMessage();
         GfrSetRlrTopSecAbs._LOGGER_.severe(str);
         GfrOptionPaneAbs.s_showDialogError(null, str);
         return;
      }

      super.update(obs, objEvt);
   }
}
TOP

Related Classes of org.geoforge.guillc.wwd.rlrs.GfrSetRlrTopSecAbs

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.