package ca.ucalgary.seahawk.util;

/**
 * An empty icon that prints nothing (used for new tabs with no contents)
 */
public class NullIcon implements javax.swing.Icon{
	public int getIconHeight(){
	    return 0;
	}

	public int getIconWidth(){
	    return 0;
	}

	public void paintIcon(java.awt.Component c, java.awt.Graphics g, int x, int y) {
	    return;
	}
}
