Package org.geoforge.plggazetteers.swing.action

Source Code of org.geoforge.plggazetteers.swing.action.GfrActPlgGazetteerGisgraphySel

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

import java.util.logging.Logger;
import org.geoforge.guillc.dialog.GfrDlgAbs;
import org.geoforge.java.util.logging.filehandler.FileHandlerLogger;
import org.geoforge.plggazetteers.swing.dialog.GfrDlgCmdCancelGazetteerGisgraphySel;

/**
*
* @author bantchao
*/
public class GfrActPlgGazetteerGisgraphySel extends GfrActPlgGazetteerGisgraphyAbs
{
    final static private Logger _LOGGER_ = Logger.getLogger(GfrActPlgGazetteerGisgraphySel.class.getName());

   static
   {
      GfrActPlgGazetteerGisgraphySel._LOGGER_.addHandler(FileHandlerLogger.s_getInstance());
   }
   
    // ---
  
   
    public GfrActPlgGazetteerGisgraphySel()
    {
        super();

    }


    @Override
    protected void _doJob() throws Exception
    {
        GfrDlgAbs dlg = new GfrDlgCmdCancelGazetteerGisgraphySel();
           
        if (! dlg.init())
        {
            String strError = "! dlg.init()";
            GfrActPlgGazetteerGisgraphySel._LOGGER_.severe(strError);
            throw new Exception(strError);
        }

        dlg.setVisible(true);
    }
}
TOP

Related Classes of org.geoforge.plggazetteers.swing.action.GfrActPlgGazetteerGisgraphySel

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.