All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cef.callback.CefNativeAdapter Maven / Gradle / Ivy

The newest version!
package org.cef.callback;

public class CefNativeAdapter implements CefNative {
    // Used internally to store a pointer to the CEF object.
    private long N_CefHandle = 0;

    @Override
    public void setNativeRef(String identifer, long nativeRef) {
        N_CefHandle = nativeRef;
    }

    @Override
    public long getNativeRef(String identifer) {
        return N_CefHandle;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy