public synchronized void init(Context cx, WGACore wgaCore) {
if (!_inited) {
initStandardObjects(cx, false);
_wgaGlobal.setParentScope(this);
_wgaGlobal.put("Core", _wgaGlobal, wgaCore);
_wgaGlobal.put("Utils", _wgaGlobal, new NativeJavaClass(_wgaGlobal, WGUtils.class));
_inited = true;
_wgaGlobal.sealObject();
sealObject();
}
}