/** * Called to instruct the component instance to stop and suspend its state. The renderer should * stop at this point. */ public void stop() { mainCanvas.setEnabled(false); }
/** * Called to instruct the component instance to destroy itself and any used resources. It will not * be used again. */ public void destroy() { mainCanvas.setEnabled(false); mainCanvas.browserShutdown(); }
/** Called to instruct the component instance to start rendering now. */ public void start() { mainCanvas.setEnabled(true); }