Package org.geoforge.guillc.panel

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

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

import org.geoforge.guillc.textarea.GfrTaa;

/**
*
* @author bantchao
*/
abstract public class PnlConfirmDlgTaaAbs extends PnlConfirmDlgAbs
{
    protected PnlConfirmDlgTaaAbs(String strWhat)
    {
        super();
       
        super._cmpText = new GfrTaa(strWhat);
    }
   
    @Override
    public boolean init()
    {
        if (! super.init())
            return false;
       
        ((GfrTaa) super._cmpText).setEditable(false);
        return true;
    }
}
TOP

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

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.