Examples of IGfrHandlerLifeCycleObject


Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

         {
            Component cmpCur = this._pnl.getComponent(i);

            if (cmpCur instanceof IGfrHandlerLifeCycleObject)
            {
               IGfrHandlerLifeCycleObject obj = (IGfrHandlerLifeCycleObject) cmpCur;

               if (obj != null)
               {
                  obj.destroy();
                  obj = null;
               }
            }
         }
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

    {
        this.loadTransient();

        for (int i=0; i<this._altObjComponentChildren.size(); i++)
        {
            IGfrHandlerLifeCycleObject obj = this._altObjComponentChildren.get(i);

            if (obj instanceof IGfrHandlerUnserializedObject)
            {
                ((IGfrHandlerUnserializedObject) obj).loadUnserializedObject();
            }
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

    {
        this.releaseTransient();

        for (int i=0; i<this._altObjComponentChildren.size(); i++)
        {
            IGfrHandlerLifeCycleObject obj = this._altObjComponentChildren.get(i);

            if (obj instanceof IGfrHandlerUnserializedObject)
            {
                ((IGfrHandlerUnserializedObject) obj).releaseUnserializedObject();
            }
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

   
    public void setEnabledHelpGettingStarted(HelpBroker hbr)
    {
        for (int i=0; i<this._altObjComponentChildren.size(); i++)
        {
            IGfrHandlerLifeCycleObject obj = this._altObjComponentChildren.get(i);

            if (obj instanceof GfrMbrSpcAppAbs)
            {
                ((GfrMbrSpcAppAbs) obj).setEnabledHelpGettingStarted(hbr);
            }
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

        if (! super.init())
            return false;

        for (int i=0; i<this._altObjComponentChildren.size(); i++)
        {
            IGfrHandlerLifeCycleObject obj = this._altObjComponentChildren.get(i);

            if (! obj.init())
                return false;
        }
       
        this._pnlContentPane.add(GfrPnlStatusBarMain.s_getInstance(), BorderLayout.SOUTH);
       
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

   
    public void setEnabledTabsContents(boolean bln)
    {
        for (int i=0; i<this._altObjComponentChildren.size(); i++)
        {
            IGfrHandlerLifeCycleObject obj = this._altObjComponentChildren.get(i);

            if (obj instanceof GfrTabSpcAppClsPrjAbs)
            {
                ((GfrTabSpcAppClsPrjAbs) obj).setEnabled(bln);
            }
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

    @Override
    public void setEnabledTrueHelpOnThisSection(HelpBroker hbr)
    {
        for (int i=0; i<this._altObjComponentChildren.size(); i++)
        {
            IGfrHandlerLifeCycleObject obj = this._altObjComponentChildren.get(i);

            if (obj instanceof IGfrHandlerSetEnabledTrueHelpOnThisSection)
            {
                ((IGfrHandlerSetEnabledTrueHelpOnThisSection) obj).setEnabledTrueHelpOnThisSection(hbr);
            }
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

          exc.printStackTrace();
       }
      
        for (int i = 0; i < this._altObjComponentChildren.size(); i++)
        {
            IGfrHandlerLifeCycleObject obj = this._altObjComponentChildren.get(i);

            if (obj == null)
                continue;

            obj.destroy();
            obj = null;
        }

        this._altObjComponentChildren.clear();
        this._altObjComponentChildren = null;
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

      {
         Component cmpCur = super.getComponent(i);

         if (cmpCur instanceof IGfrHandlerLifeCycleObject)
         {
            IGfrHandlerLifeCycleObject obj = (IGfrHandlerLifeCycleObject) cmpCur;
            obj.destroy();
         }
      }
   }
View Full Code Here

Examples of org.geoforge.lang.handler.IGfrHandlerLifeCycleObject

        {
            Component cmpCur = super.getComponent(i);

            if (cmpCur instanceof IGfrHandlerLifeCycleObject)
            {
                IGfrHandlerLifeCycleObject objCur = (IGfrHandlerLifeCycleObject) cmpCur;
               
                if (objCur != null)
                {
                  objCur.destroy();
                  objCur = null;
                }
            }
        }
    }
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.