Ok, I know this is a stupid-easy question, but how do I "gather" (best word I could think of) an image?
JFrame frame = new JFrame();
Image programIcon = (...?...);
frame.setIconImage(programIcon);
My main issue is that since Image is abstract, I can't exactly go " = new Image("yadda.png");" - like I could with javax.swing.ImageIcon.