mirror of
https://github.com/corda/corda.git
synced 2025-01-09 06:23:04 +00:00
10 lines
189 B
Java
10 lines
189 B
Java
|
package avian;
|
||
|
|
||
|
import java.lang.reflect.Field;
|
||
|
|
||
|
public class TestReflection {
|
||
|
public static Object get(Field field, Object target) throws Exception {
|
||
|
return field.get(target);
|
||
|
}
|
||
|
}
|