elephant.rpc.server.service.MethodStub Maven / Gradle / Ivy
The newest version!
package elephant.rpc.server.service;
import java.lang.reflect.Method;
/**
*
* @author skydu
*
*/
public class MethodStub {
//
public String methodName;
//
public Method method;
public Method implMethod;
//
public MethodStub(String methodName,Method method,Method implMethod){
this.methodName=methodName;
this.method=method;
this.implMethod=implMethod;
}
//
@Override
public String toString() {
return "MethodStub [methodName=" + methodName + ", method=" + method
+ "]";
}
}