All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ibatis.reflection.invoker.SetFieldInvoker Maven / Gradle / Ivy

The newest version!
package org.apache.ibatis.reflection.invoker;

import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;

public class SetFieldInvoker implements Invoker {
  private Field field;

  public SetFieldInvoker(Field field) {
    this.field = field;
  }

  public Object invoke(Object target, Object[] args) throws IllegalAccessException, InvocationTargetException {
    field.set(target, args[0]);
    return null;
  }

  public Class getType() {
    return field.getType();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy