jnr.ffi.provider.NativeVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-ffi Show documentation
Show all versions of jnr-ffi Show documentation
A library for invoking native functions from java
package jnr.ffi.provider;
import java.lang.reflect.Method;
public class NativeVariable {
private final Method method;
public NativeVariable(Method method) {
this.method = method;
}
public Method getMethod() {
return method;
}
}