/*************** * * Copyright (c) AT&T DARICS, 1996 -- All Rights Reserved * * PROJECT: JavaWorld * MODULE: Tips & Tricks * FILE: TestApplet.java * * AUTHOR: Andrzej Porebski, May 10, 1997 * * DESCRIPTION: * This file implements the applet that creates * a MutuallyExclusiveFrame for test purposes. * ************/ import java.applet.*; import java.awt.*; public class TestApplet extends Applet { public void init () { // create new Frame Frame frame=new MutuallyExclusiveFrame("Test of MutuallyExclusiveMenu"); frame.setSize(450,200); frame.show(); } }