6162636465666768697071
* Starts the Java applet component of this widget. */ public void start(ReadyCallback readyCallback){ if(this.running){ if (this.locked) { readyCallback.onFailure(new AppletUnavailableException( "The Java applet was not allowed to execute.")); } else { readyCallback.onSuccess(); } } else {
919293949596979899100
public void onSandboxDetected(){ this.locked = true; this.stop(); if (this.readyHandler != null) { this.readyHandler.onFailure( new AppletUnavailableException( "The Java applet is running within a sandbox.")); this.readyHandler = null; } }