// HelloGraphics.java // To draw graphics, copy this file to a directory, // and place a copy of the file CoStarsComponent.class in that directory! import java.awt.*; import javax.swing.*; public class HelloGraphics extends CoStarsComponent { public void paint(Graphics2D page, int width, int height) { // This program paints nothing! // Put your drawing code here! } public static void main(String[] args) { CoStarsComponent.launch(); } }