@see Binder#bindInterceptor
(
Matcher<? super Class<?>> classMatcher,
Matcher<? super Method> methodMatcher,
MethodInterceptor... interceptors)
| 147 | |
| 148 | /** @see Binder#bindInterceptor */ |
| 149 | protected void bindInterceptor( |
| 150 | Matcher<? super Class<?>> classMatcher, |
| 151 | Matcher<? super Method> methodMatcher, |
| 152 | MethodInterceptor... interceptors) { |
| 153 | binder().bindInterceptor(classMatcher, methodMatcher, interceptors); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Adds a dependency from this module to {@code key}. When the injector is created, Guice will |
nothing calls this directly
no test coverage detected