// File: TestAwt2.java (Module 9) // // Author: Rahul Simha // Created: October 13, 1998 // // A simple Frame. import java.awt.*; public class TestAwt2 { public static void main (String[] argv) { // Create a Frame instance. Frame f = new Frame (); // Set the size. f.setSize (200, 100); // Install a title for the titlebar. f.setTitle ("A Test Window"); // A background color. f.setBackground (Color.cyan); // Display. f.setVisible (true); } }