Codebase list jd-gui / 0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream services / src / main / java / org / jd / gui / view / data / TreeNodeBean.java
0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream

Tree @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream (Download .tar.gz)

TreeNodeBean.java @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstreamraw · history · blame

/*
 * Copyright (c) 2008-2019 Emmanuel Dupuy.
 * This project is distributed under the GPLv3 license.
 * This is a Copyleft license that gives the user the right to use,
 * copy and modify the code freely for non-commercial purposes.
 */

package org.jd.gui.view.data;

import org.jd.gui.api.model.TreeNodeData;

import javax.swing.*;

public class TreeNodeBean implements TreeNodeData {
    protected String label;
    protected String tip;
    protected Icon icon;
    protected Icon openIcon;

    public TreeNodeBean(String label, Icon icon) {
        this.label = label;
        this.icon = icon;
    }

    public TreeNodeBean(String label, String tip, Icon icon) {
        this.label = label;
        this.tip = tip;
        this.icon = icon;
    }

    public TreeNodeBean(String label, Icon icon, Icon openIcon) {
        this.label = label;
        this.icon = icon;
        this.openIcon = openIcon;
    }

    public TreeNodeBean(String label, String tip, Icon icon, Icon openIcon) {
        this.label = label;
        this.tip = tip;
        this.icon = icon;
        this.openIcon = openIcon;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public void setTip(String tip) {
        this.tip = tip;
    }

    public void setIcon(Icon icon) {
        this.icon = icon;
    }

    public void setOpenIcon(Icon openIcon) {
        this.openIcon = openIcon;
    }

    @Override
    public String getLabel() {

        return label;
    }

    @Override
    public String getTip() {
        return tip;
    }

    @Override
    public Icon getIcon() {
        return icon;
    }

    @Override
    public Icon getOpenIcon() {
        return openIcon;
    }
}