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

org.jmisb.viewer.TreeIcon Maven / Gradle / Ivy

package org.jmisb.viewer;

import java.awt.Component;
import java.awt.Graphics;
import javax.swing.Icon;

class TreeIcon implements Icon {

    private static final int SIZE = 0;

    public TreeIcon() {}

    @Override
    public int getIconWidth() {
        return SIZE;
    }

    @Override
    public int getIconHeight() {
        return SIZE;
    }

    @Override
    public void paintIcon(Component c, Graphics g, int x, int y) {
        // Nothing - we don't want to draw.
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy