com.github.ltsopensource.json.bean.MethodInfo Maven / Gradle / Ivy
package com.github.ltsopensource.json.bean;
import java.lang.reflect.Method;
/**
* @author Robert HG ([email protected]) on 12/31/15.
*/
public class MethodInfo {
private String fieldName;
private Method method;
public MethodInfo(String fieldName, Method method) {
this.fieldName = fieldName;
this.method = method;
}
public String getFieldName() {
return fieldName;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public Method getMethod() {
return method;
}
public void setMethod(Method method) {
this.method = method;
}
}