/** start */ @Override public void start() { super.start(); showStatus(Compiere.getSummary()); Splash.getSplash(); Compiere.startup(true, "Applet"); // needs to be here for UI new AMenu(); } // start
/** destroy */ @Override public void destroy() { super.destroy(); Env.exitEnv(0); } // destroy
/** stop */ @Override public void stop() { super.stop(); } // stop
/** ************************************************************************ init */ @Override public void init() { super.init(); TextArea ta = new TextArea(Compiere.getSummary()); add(ta); } // init