Package org.geoforge.guillcogcecl.popupmenu

Source Code of org.geoforge.guillcogcecl.popupmenu.GfrPmuCtlCtrFolderSetDelImgsSegWiseYesMan

/*
*  Copyright (C) 2011-2014 GeoForge Project
*
*  This program is free software; you can redistribute it and/or
*  modify it under the terms of the GNU Lesser General Public License
*  as published by the Free Software Foundation; either version 2
*  of the License, or (at your option) any later version.
*
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU Lesser General Public License for more details.
*
*  You should have received a copy of the GNU Lesser General Public License
*  along with this program; if not, write to the Free Software
*  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

package org.geoforge.guillcogcecl.popupmenu;

import java.awt.event.ActionListener;
import org.geoforge.guillc.menu.GfrMenIcnImpObjsLlosAbs;
import org.geoforge.guillc.tree.GfrTreAbs;
import org.geoforge.guillcogcecl.enumeration.GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl;
import org.geoforge.guillc.menu.GfrMenIcnExpObjsLlosImgAbs;
import org.geoforge.guillcogcecl.menu.GfrMenIcnExpObjsLlosImgEclSwy;
import org.geoforge.guillc.menu.GfrMenIcnImpObjsLlosImage;
import org.geoforge.java.awt.container.GfrUtilContainer;

/**
*
* @author Amadeus.Sowerby
*
* email: Amadeus.Sowerby_AT_gmail.com ... please remove "_AT_" from the above
* string to get the right email address
*/
public class GfrPmuCtlCtrFolderSetDelImgsSegWiseYesMan extends GfrPmuCtlCtrFolderSetDelImgsSegWiseYesAbs
{

   private GfrMenIcnImpObjsLlosAbs _menImport_ = null;
   private GfrMenIcnExpObjsLlosImgAbs _mimExport_ = null;

   public GfrPmuCtlCtrFolderSetDelImgsSegWiseYesMan(
           ActionListener alrController,
           String strUniqueId,
           GfrTreAbs tree)
           throws Exception
   {
      super(alrController, strUniqueId, tree);



      this._menImport_ = new GfrMenIcnImpObjsLlosImage(
              alrController,
              strUniqueId,
              GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_SEG_WISE_YES.name());

      this._mimExport_ = new GfrMenIcnExpObjsLlosImgEclSwy(alrController, strUniqueId);
   }

   @Override
   public boolean init()
   {
      if (!super.init())
         return false;

      if (!this._menImport_.init())
         return false;

      if (!this._mimExport_.init())
         return false;
     
       int intPos = 0;
     
      if (super._menPlugins != null)
      {
          intPos = GfrUtilContainer.s_getPosition(this, super._menPlugins);
          intPos += 2;
      }
     
      else
      {
          intPos = GfrUtilContainer.s_getPosition(this, super._mimFolderAllCollapse);
          intPos += 2;
      }

      super.add(this._menImport_, intPos++);
      super.add(this._mimExport_, intPos++);

      return true;
   }

   @Override
   public void destroy()
   {
      super.destroy();

      if (this._menImport_ != null)
      {
         this._menImport_.destroy();
         this._menImport_ = null;
      }

      if (this._mimExport_ != null)
      {
         this._mimExport_.destroy();
         this._mimExport_ = null;
      }
   }
}
TOP

Related Classes of org.geoforge.guillcogcecl.popupmenu.GfrPmuCtlCtrFolderSetDelImgsSegWiseYesMan

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.