* this class's classLoader
* @param target
* the object being wrapped as an IDispatch
*/
IDispatchProxy(ClassLoader cl, DispatchIdOracle ora, Object target) {
javaDispatch = new JavaDispatchImpl(ora, target);
this.classLoaderRef = new WeakReference<ClassLoader>(cl);
this.dispIdOracleRef = new WeakReference<DispatchIdOracle>(ora);
myGlobalRef = createIDispatchProxyRef(this);
}