Codebase list jd-gui / 0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream app / src / main / java / org / jd / gui / view / bean / OpenTypeListCellBean.java
0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream

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

OpenTypeListCellBean.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.bean;

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

import javax.swing.*;
import java.util.Collection;

public class OpenTypeListCellBean {
    public String label;
    public String packag;
    public Icon icon;
    public Collection<Container.Entry> entries;
    public String typeName;

    public OpenTypeListCellBean(String label, Collection<Container.Entry> entries, String typeName) {
        this.label = label;
        this.entries = entries;
        this.typeName = typeName;
    }

    public OpenTypeListCellBean(String label, String packag, Icon icon, Collection<Container.Entry> entries, String typeName) {
        this.label = label;
        this.packag = packag;
        this.icon = icon;
        this.entries = entries;
        this.typeName = typeName;
    }
}