Package org.geoforge.guillc.tree

Source Code of org.geoforge.guillc.tree.GfrTreCtrTopSpcLblAbs

/*
*  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 3 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, see <http://www.gnu.org/licenses/>.
*/
package org.geoforge.guillc.tree;

import java.awt.event.ActionListener;
import java.util.logging.Logger;
import javax.swing.event.TreeExpansionListener;
import javax.swing.event.TreeModelListener;
import javax.swing.event.TreeSelectionListener;
import org.geoforge.guillc.optionpane.GfrOptionPaneAbs;
import org.geoforge.guillc.panel.PnlTreeCellRendererLabel;
import org.geoforge.guillc.treenode.GfrNodCtrFixFolderRootLbl;
import org.geoforge.java.util.logging.filehandler.FileHandlerLogger;


/**
*
* @author bantchao
*
* email: bantchao_AT_gmail.com
* ... please remove "_AT_" from the above string to get the right email address
*
*/
/*
* "Lbl" means "Label"
*/
abstract public class GfrTreCtrTopSpcLblAbs extends GfrTreCtrTopSpcAbs
{   
   // ----
    // begin: instantiate logger for this class
    final private static Logger _LOGGER_ = Logger.getLogger(GfrTreCtrTopSpcLblAbs.class.getName());

    static
    {
        GfrTreCtrTopSpcLblAbs._LOGGER_.addHandler(FileHandlerLogger.s_getInstance());
    }

    // end: instantiate logger for this class
    // ----
  
    protected GfrTreCtrTopSpcLblAbs(
            String strKindActivity,
            ActionListener alrParentPanelMvc,
            TreeSelectionListener lstTreeSelectionToolbar,
            TreeExpansionListener lstTreeExpansionToolbar,
            TreeModelListener lstTreeModelToolbar
            )
    {
        super(new GfrNodCtrFixFolderRootLbl(strKindActivity),
                alrParentPanelMvc,
                lstTreeSelectionToolbar, lstTreeExpansionToolbar, lstTreeModelToolbar);
    }
   
    @Override
    public boolean init()
    {
        if (! super.init())
            return false;
       
        PnlTreeCellRendererLabel crr = new PnlTreeCellRendererLabel();
       
        if (! crr.init())
        {
            String str = "! crr.init()";
            GfrTreCtrTopSpcLblAbs._LOGGER_.severe(str);
            GfrOptionPaneAbs.s_showDialogError(null, str);
            return false;
        }
       
        super.setCellRenderer(crr);
       
        return true;
    }
}
TOP

Related Classes of org.geoforge.guillc.tree.GfrTreCtrTopSpcLblAbs

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.