Package br.msf.commons.netbeans.swing.renderer

Source Code of br.msf.commons.netbeans.swing.renderer.ProjectListCellRenderer

/*
* license-updater - Copyright (c) 2012 MSF. All rights reserved.
*
* This library 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 2.1 of the License, or (at your option)
* any later version.
*
* This library 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 library; if not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package br.msf.commons.netbeans.swing.renderer;

import java.awt.Component;
import javax.swing.DefaultListCellRenderer;
import javax.swing.JList;
import org.netbeans.api.project.Project;
import org.netbeans.api.project.ProjectUtils;

/**
* <p>Renderer for a Project JList or JComboBox.
*
* @author Marcius da Silva da Fonseca (sf.marcius@gmail.com)
* @version 1.0
* @since license-updater-1.0
*/
public class ProjectListCellRenderer extends DefaultListCellRenderer {

    private static final long serialVersionUID = -8070202271523706382L;

    @Override
    public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
        super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
        if (value == null) {
            return this;
        }
        if (!Project.class.isAssignableFrom(value.getClass())) {
            throw new IllegalArgumentException("This is a renderer to Project elements only!");
        }
        Project project = (Project) value;
        setText(ProjectUtils.getInformation(project).getDisplayName());
        setIcon(ProjectUtils.getInformation(project).getIcon());
        return this;
    }
}
TOP

Related Classes of br.msf.commons.netbeans.swing.renderer.ProjectListCellRenderer

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.