FileDocCategorySizeDatePackage
EventTest.javaAPI DocExample652Tue Feb 12 13:34:00 GMT 2002myprojects.eventtest

EventTest.java

/*
 * @(#)EventTest.java 1.0 01/12/04
 *
 * You can modify the template of this file in the
 * directory ..\JCreator\Templates\Template_1\Project_Name.java
 *
 * You can also create your own project template by making a new
 * folder in the directory ..\JCreator\Template\. Use the other
 * templates as examples.
 *
 */
package myprojects.eventtest;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

class EventTest {
	
	
	public static void main(String args[]) {
		System.out.println("Starting EventTest...");
	
		GUI g = new GUI();
		g.setSize(200,200);
		g.setTitle("GUI");
		g.setVisible(true);
	}
}