mirror of
https://github.com/corda/corda.git
synced 2025-06-12 20:28:18 +00:00
various bugfixes
This commit is contained in:
@ -35,7 +35,8 @@ public class Field<T> extends AccessibleObject {
|
||||
return Class.forCanonicalName(getName());
|
||||
}
|
||||
|
||||
public native Object get(Object instance);
|
||||
public native Object get(Object instance) throws IllegalAccessException;
|
||||
|
||||
public native void set(Object instance, Object value);
|
||||
public native void set(Object instance, Object value)
|
||||
throws IllegalAccessException;
|
||||
}
|
||||
|
Reference in New Issue
Block a user