import javax.swing.*;
import java.awt.Component;
import java.awt.Graphics;

public class ResizableIcon extends ImageIcon
{
    public ResizableIcon(String name)
    {
	super(name);
    }

    public void paintIcon(Component c, Graphics g, int x, int y)
    {
	int width = c.getWidth();
	int height = c.getHeight();
	g.drawImage(getImage(),0,0,width,height,c);
    }    
}
