import javax.swing.JFrame;

public class ExitFrame extends JFrame {
	public ExitFrame() {
		super("Frame Title");
		setSize(300,100);
		ExitWindow exit= new ExitWindow(); //use ExitWindow object created in the ExitWindow.java file
		addWindowListener(exit);
		setVisible(true);
	}
	
	public static void main(String[] arguments) {
		ExitFrame sf = new ExitFrame();
	}
	
}