// ImageBackground Class // ImageBackground.java // Imports import java.awt.*; public class ImageBackground extends Background { protected Image image; public ImageBackground(Component comp, Image img) { super(comp); image = img; } public Image getImage() { return image; } public void setImage(Image img) { image = img; } public void draw(Graphics g) { // Draw background image g.drawImage(image, 0, 0, component); } }