mirror of
https://github.com/corda/corda.git
synced 2025-06-12 20:28:18 +00:00
flesh out serialization/deserialization code and fix build
This commit is contained in:
@ -31,6 +31,10 @@ public class Field<T> extends AccessibleObject {
|
||||
return new String(name, 0, name.length - 1, false);
|
||||
}
|
||||
|
||||
public Class getType() {
|
||||
return Class.forCanonicalName(getName());
|
||||
}
|
||||
|
||||
public native Object get(Object instance);
|
||||
|
||||
public native void set(Object instance, Object value);
|
||||
|
Reference in New Issue
Block a user