Home | History | Annotate | Download | only in creation

Lines Matching refs:method

9 import java.lang.reflect.Method;
14 private final Method method;
16 public DelegatingMethod(Method method) {
17 assert method != null : "Method cannot be null";
18 this.method = method;
22 return method.getExceptionTypes();
25 public Method getJavaMethod() {
26 return method;
30 return method.getName();
34 return method.getParameterTypes();
38 return method.getReturnType();
42 return method.isVarArgs();
46 return (method.getModifiers() & Modifier.ABSTRACT) != 0;
50 * @return True if the input object is a DelegatingMethod which has an internal Method which is equal to the internal Method of this DelegatingMethod,
51 * or if the input object is a Method which is equal to the internal Method of this DelegatingMethod.
60 return method.equals(that.method);
62 return method.equals(o);
68 return method.hashCode();