@see Binder#bindInterceptor(com.google.inject.matcher.Matcher, com.google.inject.matcher.Matcher, org.aopalliance.intercept.MethodInterceptor[])
(
Matcher<? super Class<?>> classMatcher,
Matcher<? super Method> methodMatcher,
MethodInterceptor... interceptors)
| 204 | * com.google.inject.matcher.Matcher, org.aopalliance.intercept.MethodInterceptor[]) |
| 205 | */ |
| 206 | protected final void bindInterceptor( |
| 207 | Matcher<? super Class<?>> classMatcher, |
| 208 | Matcher<? super Method> methodMatcher, |
| 209 | MethodInterceptor... interceptors) { |
| 210 | binder().bindInterceptor(classMatcher, methodMatcher, interceptors); |
| 211 | } |
| 212 | |
| 213 | /** Instructs Guice to require a binding to the given key. */ |
| 214 | protected final void requireBinding(Key<?> key) { |
nothing calls this directly
no test coverage detected