mirror of
https://github.com/corda/corda.git
synced 2025-06-16 22:28:15 +00:00
classpath progress
This commit is contained in:
@ -5,6 +5,8 @@ public final class Array {
|
||||
|
||||
public static native Object get(Object array, int index);
|
||||
|
||||
public static native void set(Object array, int index, Object value);
|
||||
|
||||
public static native int getLength(Object array);
|
||||
|
||||
private static native Object makeObjectArray(Class elementType, int length);
|
||||
|
@ -32,4 +32,6 @@ public class Field<T> extends AccessibleObject {
|
||||
}
|
||||
|
||||
public native Object get(Object instance);
|
||||
|
||||
public native void set(Object instance, Object value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user