Package org.geoforge.mdldsp.frame

Source Code of org.geoforge.mdldsp.frame.GfrMdlDspIfrRunTopsWwdEarth

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.geoforge.mdldsp.frame;

import org.geoforge.mdldsp.GfrMdlDspAbs;
import org.geoforge.mdldsp.event.frame.GfrEvtMdlIdDspOpenedIfrWwdEarth;

/**
*
* @author bantchao
*/
public class GfrMdlDspIfrRunTopsWwdEarth extends GfrMdlDspAbs
{
    static private GfrMdlDspIfrRunTopsWwdEarth _INSTANCE_;
  
   static public GfrMdlDspIfrRunTopsWwdEarth s_getInstance()
   {
      if (_INSTANCE_ == null)
      {
         _INSTANCE_ = new GfrMdlDspIfrRunTopsWwdEarth();
      }
     
      return _INSTANCE_;
   }
  
   // ---
  
   public void opened(String strIdInternalFrame)
   {
       super.setChanged();
      Object objEvt = new GfrEvtMdlIdDspOpenedIfrWwdEarth(strIdInternalFrame);
      super.notifyObservers(objEvt);
   }
  
  
  
   
    // ---
   
    private GfrMdlDspIfrRunTopsWwdEarth()
    {
        super();
    }
}
TOP

Related Classes of org.geoforge.mdldsp.frame.GfrMdlDspIfrRunTopsWwdEarth

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.