Пример #1
0
 /**
  * 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);
 }
Пример #2
0
 /**
  * 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();
 }
Пример #3
0
 /** Called to instruct the component instance to start rendering now. */
 public void start() {
   mainCanvas.setEnabled(true);
 }