Class Interceptors
- java.lang.Object
-
- org.robolectric.internal.bytecode.Interceptors
-
public class Interceptors extends Object
-
-
Constructor Summary
Constructors Constructor Description Interceptors(Collection<Interceptor> interceptorList)
Interceptors(Interceptor... interceptors)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Interceptor
findInterceptor(String className, String methodName)
Collection<MethodRef>
getAllMethodRefs()
Function<Object,Object>
getInterceptionHandler(MethodSignature methodSignature)
-
-
-
Constructor Detail
-
Interceptors
public Interceptors(Interceptor... interceptors)
-
Interceptors
public Interceptors(Collection<Interceptor> interceptorList)
-
-
Method Detail
-
getAllMethodRefs
public Collection<MethodRef> getAllMethodRefs()
-
getInterceptionHandler
public Function<Object,Object> getInterceptionHandler(MethodSignature methodSignature)
-
findInterceptor
public Interceptor findInterceptor(String className, String methodName)
-
-