All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rmannibucau.loader.spi.graph.Node Maven / Gradle / Ivy

The newest version!
package com.github.rmannibucau.loader.spi.graph;

import javax.swing.Icon;

/**
 * @author Romain Manni-Bucau
 */
public class Node extends Info {
    private Icon icon;

    public Node(String txt) {
        super(txt);
    }

    public Icon getIcon() {
        return icon;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy