Package org.geoforge.guillc.panel

Source Code of org.geoforge.guillc.panel.GfrPnlCmdCancelOkEnableDisableNewClearAbs

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

import java.awt.event.ActionListener;
import org.geoforge.guillc.button.GfrBtnTxtRndCmdClearXXSmall;
import org.geoforge.guillc.button.GfrBtnTxtRndCmdNewXXSmall;

/**
*
* @author bill
*/
abstract public class GfrPnlCmdCancelOkEnableDisableNewClearAbs extends GfrPnlCmdCancelOkEnableDisableAbs
{
    protected GfrPnlCmdCancelOkEnableDisableNewClearAbs(ActionListener alr)
    {
      super(alr);

      super._btnEnableOk = new GfrBtnTxtRndCmdNewXXSmall((ActionListener) this);
      super._btnDisableOk = new GfrBtnTxtRndCmdClearXXSmall((ActionListener) this);
     
      super._btnEnableOk.addActionListener(alr);
      super._btnDisableOk.addActionListener(alr);
    }
}
TOP

Related Classes of org.geoforge.guillc.panel.GfrPnlCmdCancelOkEnableDisableNewClearAbs

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.