// This is the driver class that constructs a CustomFrame, sets some of its // parameters, and launches it. import java.awt.*; public class DrawFrame { public static void main(String[] args) { Frame f = new CustomFrame(); f.setVisible(true); f.setSize(300, 300); f.setTitle("oh so cool!"); f.setBackground(Color.CYAN); } }