com.sun.jna.CallbackResultContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform Show documentation
Show all versions of platform Show documentation
Java Native Access Platform
package com.sun.jna;
import java.lang.reflect.Method;
/** Conversion context from a Java {@link Callback} result to a native value. */
public class CallbackResultContext extends ToNativeContext {
private Method method;
CallbackResultContext(Method callbackMethod) {
this.method = callbackMethod;
}
public Method getMethod() { return method; }
}