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

jnr.ffi.provider.NativeVariable Maven / Gradle / Ivy

There is a newer version: 2.2.16
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy