Example usage for com.google.gwt.dev.shell.designtime JavaDispatchImpl JavaDispatchImpl

List of usage examples for com.google.gwt.dev.shell.designtime JavaDispatchImpl JavaDispatchImpl

Introduction

In this page you can find the example usage for com.google.gwt.dev.shell.designtime JavaDispatchImpl JavaDispatchImpl.

Prototype

public JavaDispatchImpl(DispatchIdOracle ccl) 

Source Link

Document

This constructor initializes a dispatcher for handling static members.

Usage

From source file:com.google.gdt.eclipse.designer.ie.jsni.IDispatchProxy.java

License:Open Source License

/**
 * This constructor initializes as the static dispatcher, which handles only static method calls
 * and field references.//from  w w  w .j a va 2  s. co m
 * 
 * @param cl
 *          this class's classLoader
 */
IDispatchProxy(ClassLoader cl, DispatchIdOracle ora) {
    this.javaDispatch = new JavaDispatchImpl(ora);
    this.classLoaderRef = new WeakReference<ClassLoader>(cl);
    this.dispIdOracleRef = new WeakReference<DispatchIdOracle>(ora);
    myGlobalRef = 0;
}

From source file:com.google.gdt.eclipse.designer.moz.jsni.GeckoDispatchAdapter32.java

License:Open Source License

/**
 * This constructor initializes as the static dispatcher, which handles only
 * static method calls and field references.
 * //from  w  w w . j  av a  2 s .c om
 * @param cl this class's classLoader
 */
GeckoDispatchAdapter32(ClassLoader cl, DispatchIdOracle ora) {
    this.javaDispatch = new JavaDispatchImpl(ora);
    this.classLoaderRef = new WeakReference<ClassLoader>(cl);
    this.dispIdOracleRef = new WeakReference<DispatchIdOracle>(ora);
}

From source file:com.google.gdt.eclipse.designer.moz.jsni.GeckoDispatchAdapter64.java

License:Open Source License

/**
 * This constructor initializes as the static dispatcher, which handles only
 * static method calls and field references.
 * //from w  ww .  ja  v a2s .  c o m
 * @param cl this class's classLoader
 */
GeckoDispatchAdapter64(ClassLoader cl, DispatchIdOracle ora) {
    this.javaDispatch = new JavaDispatchImpl(ora);
    this.classLoaderRef = new WeakReference<ClassLoader>(cl);
    this.dispIdOracleRef = new WeakReference<DispatchIdOracle>(ora);
}

From source file:com.google.gdt.eclipse.designer.webkit.jsni.WebKitDispatchAdapter.java

License:Open Source License

/**
 * This constructor initializes as the static dispatcher, which handles only static method calls
 * and field references./* w w w. j a v a  2  s .  co  m*/
 * 
 * @param cl
 *          this class's classLoader
 */
WebKitDispatchAdapter(ClassLoader cl, DispatchIdOracle ora) {
    this.javaDispatch = new JavaDispatchImpl(ora);
    this.classLoaderRef = new WeakReference<ClassLoader>(cl);
    this.dispIdOracleRef = new WeakReference<DispatchIdOracle>(ora);
}