1: 2: import java.awt.*; //for the class Color used in an argument. 3: 4: public class SecondWindowDemo 5: { 6: /** 7: Creates and displays two windows of the class SecondWindow. 8: */ 9: public static void main(String[] args) 10: { 11: SecondWindow window1 = new SecondWindow( ); 12: window1.setVisible(true); 13: 14: SecondWindow window2 = new SecondWindow(Color.PINK); 15: window2.setVisible(true); 16: } 17: } 18: