Home | History | Annotate | Download | only in pool

Lines Matching refs:method

37 import org.jf.dexlib2.iface.Method;
47 class PoolMethod extends BaseMethodReference implements Method {
48 @Nonnull private final Method method;
52 public static final Function<Method, PoolMethod> TRANSFORM = new Function<Method, PoolMethod>() {
53 @Override public PoolMethod apply(Method method) {
54 return new PoolMethod(method);
58 PoolMethod(@Nonnull Method method) {
59 this.method = method;
63 return method.getDefiningClass();
67 return method.getName();
71 return method.getParameterTypes();
75 return method.getParameters();
79 return method.getReturnType();
83 return method.getAccessFlags();
87 return method.getAnnotations();
91 return method.getImplementation();