Package org.geoforge.guillcogceclgsi.dialog

Source Code of org.geoforge.guillcogceclgsi.dialog.GfrDlgCmdCancelAboutAppGfrGsi

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

import org.geoforge.guillc.dialog.GfrDlgCmdCancelAboutAppGfrAbs;
import org.geoforge.guillc.panel.PnlSelLblAbs;
import org.geoforge.guillcogceclgsi.panel.GfrPnlAboutCopyrightAppGsi;

/**
*
* @author bantchao@gmail.com
*/
public class GfrDlgCmdCancelAboutAppGfrGsi extends GfrDlgCmdCancelAboutAppGfrAbs
{
   public GfrDlgCmdCancelAboutAppGfrGsi()
   {
      super(
              "Plugins for Geozilla" // strLabelCachePluginApp
              );
     
      super._pnlCopyright = new GfrPnlAboutCopyrightAppGsi();
   }
  
   @Override
   protected boolean _fillInCaches()
   {
      if (! super._fillInCaches())
         return false;
     
      java.util.Set<PnlSelLblAbs> setPanels = new java.util.HashSet<PnlSelLblAbs>();
       
      // ---
      setPanels.add(super._pnlCacheAppPublic);
      setPanels.add(super._pnlCacheWwd);
      setPanels.add(super._pnlCacheTmp);
      setPanels.add(super._pnlCacheProtectedPlgsGfr);
      setPanels.add(super._pnlCacheProtectedPlgsApp);

      if (! PnlSelLblAbs.s_alignLabels(setPanels))
      {
         return false;
      }

      // ---
      setPanels.clear();
      setPanels = null;
     
      return true;
   }
}
TOP

Related Classes of org.geoforge.guillcogceclgsi.dialog.GfrDlgCmdCancelAboutAppGfrGsi

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.