Package org.geoforge.guillcogcecl.treenode

Source Code of org.geoforge.guillcogcecl.treenode.GfrNodCtrFixFolderSetVarPrjImgAreManAbs

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

import java.awt.event.ActionListener;
import org.geoforge.guillc.enumeration.GfrEnuValuesKindTargetWindow;
import org.geoforge.guillc.tree.GfrTreAbs;
import org.geoforge.guillc.treenode.GfrNodCtrMovAbs;
import org.geoforge.guillc.treenode.GfrNodCtrMovLeafPrjLblLloImg;
import org.geoforge.guillcogcecl.enumeration.GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl;
import org.geoforge.wrpbasprssynecl.GfrWrpBasSynObjNameTloEclAre;

/**
*
* @author robert
*/
abstract public class GfrNodCtrFixFolderSetVarPrjImgAreManAbs extends GfrNodCtrFixFolderSetVarPrjImgAreAbs
{
   protected GfrNodCtrFixFolderSetVarPrjImgAreManAbs(
           ActionListener alrControllerSpcPrj,
           ActionListener alrControllerPrs,
            String strIdUnique,
            GfrTreAbs tre)
            throws Exception
    {
        super(alrControllerSpcPrj,
                alrControllerPrs,
                tre,
                strIdUnique);
    }

   @Override
   public Object addObjectVariable(String strId) throws Exception
   {
      GfrNodCtrMovAbs nod = new GfrNodCtrMovLeafPrjLblLloImg(
              super._alrControllerSpace,
              super._alrControllerPerspective,
              strId,
              super._tree,
              super._strIdOwner,
              GfrWrpBasSynObjNameTloEclAre.getInstance(),
              GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name(),
              GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_ARE);

      super._addObjectVariableNode(nod);
     
      return nod;
   }
}
TOP

Related Classes of org.geoforge.guillcogcecl.treenode.GfrNodCtrFixFolderSetVarPrjImgAreManAbs

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.