Package org.geoforge.mdldsp.event.render.wwd

Examples of org.geoforge.mdldsp.event.render.wwd.GfrEvtMdlIdDspRndWwdEarthAbs


      
       // display
      
       if (obs instanceof GfrMdlDspRndWwdEarthShpAbs)
       {
          GfrEvtMdlIdDspRndWwdEarthAbs evt = (GfrEvtMdlIdDspRndWwdEarthAbs) objEvt;
         
          String strId = evt.getId();
         
          if (strId.compareTo(this._strIdParent_) != 0)
             return;
         
          if (evt.getWhat() != EnuEvtDspRndWwdEarthShp.ANNOTATION)
             return;
         
          String strValue = (String) evt.getValue();
          AnnotationAttributes attrs = super.getAttributes();
          attrs.setFrameShape(strValue);
          this.firePropertyChange(GfrShouldRedrawRnd.STR, null, null);
          return;
       }
View Full Code Here


      
       // display
      
       if (obs instanceof GfrMdlDspRndWwdEarthShpAbs)
       {
          GfrEvtMdlIdDspRndWwdEarthAbs evt = (GfrEvtMdlIdDspRndWwdEarthAbs) objEvt;
         
          String strId = evt.getId();
         
          if (strId.compareTo(super._strId_) != 0)
             return;
         
          if (evt.getWhat() != EnuEvtDspRndWwdEarthShp.ANNOTATION)
             return;
         
          String strValue = (String) evt.getValue();
          AnnotationAttributes attrs = super.getAttributes();
          attrs.setFrameShape(strValue);
          this.firePropertyChange(GfrShouldRedrawRnd.STR, null, null);
          return;
       }
View Full Code Here

TOP

Related Classes of org.geoforge.mdldsp.event.render.wwd.GfrEvtMdlIdDspRndWwdEarthAbs

Copyright © 2018 www.massapicom. 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.