I'm trying to use these icon images for my JButtons, but I keep getting "Resource not found: "
http://java.sun.com/developer/techDocs/hi/repository/TBG_Media.html
static ImageIcon createMediaIcon(String imageName)
{
String imgLocation = "/toolbarButtonGraphics/media/" + imageName + ".gif";
java.net.URL imageURL = Test.class.getResource(imgLocation);
if (imageURL == null)
{
System.err.println("Resource not found: " + imgLocation);
return null;
}
else
return new ImageIcon(imageURL);
}