Binds method interceptor[s] to methods matched by class and method matchers. A method is eligible for interception if: Guice created the instance the method is on Neither the enclosing type nor the method is final And the method is package-private, protected, or public
(
Matcher<? super Class<?>> classMatcher,
Matcher<? super Method> methodMatcher,
MethodInterceptor... interceptors)
| 207 | * @param interceptors to bind. The interceptors are called in the order they are given. |
| 208 | */ |
| 209 | void bindInterceptor( |
| 210 | Matcher<? super Class<?>> classMatcher, |
| 211 | Matcher<? super Method> methodMatcher, |
| 212 | MethodInterceptor... interceptors); |
no outgoing calls