4546474849505152
* static method calls and field references. * * @param cl this class's classLoader */ WebKitDispatchAdapter(CompilingClassLoader cl) { javaDispatch = new JavaDispatchImpl(cl); this.classLoader = cl; }
5657585960616263
* * @param cl this class's classLoader * @param target the object being wrapped as an IDispatch */ WebKitDispatchAdapter(CompilingClassLoader cl, Object target) { javaDispatch = new JavaDispatchImpl(cl, target); this.classLoader = cl; }