Examples of GfrEvtMdlPlgActive


Examples of org.geoforge.mgrplg.model.event.GfrEvtMdlPlgActive

   public void setActive(GfrPlgImplAbs plgSource, boolean bln)
   {
       plgSource.setActivePlugin(bln);
      
      super.setChanged();
      Object obj = new GfrEvtMdlPlgActive(plgSource, bln);
      super.notifyObservers(obj);
   }
View Full Code Here

Examples of org.geoforge.mgrplg.model.event.GfrEvtMdlPlgActive

   @Override
   public void update(Observable obs, Object objEvt)
   {
      if (objEvt instanceof GfrEvtMdlPlgActive)
      {
         GfrEvtMdlPlgActive evt = (GfrEvtMdlPlgActive) objEvt;
         IGfrHandlerPlugin plgSource = evt.getSource();
         boolean blnValue = evt.getValue();

          if (! this._updateSetActive_(plgSource, blnValue))
          {
             String strSevere = "! this._updateSetActive_(plgSource, blnValue)";
             GfrTblPopHeightRowFixManPlgsAbs._LOGGER_.severe(strSevere);
View Full Code Here

Examples of org.geoforge.mgrplg.model.event.GfrEvtMdlPlgActive

    @Override
    public void update(Observable obs, Object objEvt)
    {
        if (objEvt instanceof GfrEvtMdlPlgActive)
        {
            GfrEvtMdlPlgActive evt = (GfrEvtMdlPlgActive) objEvt;
           
            if (evt.getSource() != this._plg_)
                return;
           
            boolean bln = evt.getValue();
            super.setEnabled(bln);
           
            String strTip = _s_getFormattedToolTip_(this._plg_, bln);
            super.setToolTipText(strTip);
        }
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.