public class BasicExampleMDI extends AbstractMDIApplication { public BasicExampleMDI { super("BasicExampleMDI"); mfactory = new SimpleMenuFactory(); super.preparePanels(4, true, true, mfactory); } }
public class TestMDIApplication extends AbstractMDIApplication { public TestMDIApplication() { super("TestMDIApplication"); this.initConfiguration(); mfactory = new SimpleMenuFactory(); super.preparePanels(4, MessageAreaType.MESSAGEAREA_PER_TAB, true, true, mfactory); this.setSize(500, 500); this.getStatusBar().setMessage("Hello World!"); } }
Copyright 2006-2023 Herve Girod. All Rights Reserved. Documentation and source under the LGPL v2 and Apache 2.0 licences