
com.nfwork.dbfound.model.reflector.GetFieldInvoker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbfound Show documentation
Show all versions of dbfound Show documentation
dbfound development platform
package com.nfwork.dbfound.model.reflector;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
public class GetFieldInvoker implements Invoker {
private Field field;
public GetFieldInvoker(Field field) {
this.field = field;
}
public Object invoke(Object target, Object[] args) throws IllegalAccessException, InvocationTargetException {
return field.get(target);
}
public Class> getType() {
return field.getType();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy