import java.awt.*; import adm.*; /** * There is no book keeping implemented in this class. * When this application invoked by the CJavaMenuItem, a new instance * will be invoked every time the menu button is pressed */ public class MultiApp extends CApplication { public MultiApp () { CLabel L = new CLabel("R121", "GSET"); add(L); } public static void main (String [] args) { Frame f = new MultiApp (); f.setBounds(20, 100, 100, 50); f.show(); } }