/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) John D. Mitchell, 1996 -- All Rights Reserved PROJECT: JavaWorld MODULE: Tips & Tricks FILE: CascadeApplet.java AUTHOR: John D. Mitchell, Jul 19, 1996 REVISION HISTORY: Name Date Description ---- ---- ----------- JDM 96.07.19 Initial version. DESCRIPTION: This file defines a Java User Interface which highlights the creation of cascading menus. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ import java.applet.*; import java.awt.*; public class CascadeApplet extends Applet { private Frame frame; public void init () { frame = new CascadeMenus (); frame.resize (350, 200); frame.show (); } }