Home
last modified time | relevance | path

Searched refs:methodMatcher (Results 1 – 9 of 9) sorted by relevance

/external/guice/core/src/com/google/inject/internal/
DMethodAspect.java37 private final Matcher<? super Method> methodMatcher; field in MethodAspect
48 Matcher<? super Method> methodMatcher, List<MethodInterceptor> interceptors) { in MethodAspect() argument
50 this.methodMatcher = checkNotNull(methodMatcher, "method matcher"); in MethodAspect()
55 Matcher<? super Method> methodMatcher, MethodInterceptor... interceptors) { in MethodAspect() argument
56 this(classMatcher, methodMatcher, Arrays.asList(interceptors)); in MethodAspect()
64 return methodMatcher.matches(method); in matches()
DEncounterImpl.java67 public void bindInterceptor(Matcher<? super Method> methodMatcher, in bindInterceptor() argument
76 aspects.add(new MethodAspect(Matchers.any(), methodMatcher, interceptors)); in bindInterceptor()
/external/guice/core/src/com/google/inject/spi/
DInterceptorBinding.java48 private final Matcher<? super Method> methodMatcher; field in InterceptorBinding
54 Matcher<? super Method> methodMatcher, in InterceptorBinding() argument
58 this.methodMatcher = checkNotNull(methodMatcher, "methodMatcher"); in InterceptorBinding()
71 return methodMatcher; in getMethodMatcher()
83 binder.withSource(getSource()).bindInterceptor(classMatcher, methodMatcher, in applyTo()
DTypeEncounter.java119 void bindInterceptor(Matcher<? super Method> methodMatcher, in bindInterceptor() argument
DElements.java226 Matcher<? super Method> methodMatcher, in bindInterceptor() argument
229 getElementSource(), classMatcher, methodMatcher, interceptors)); in bindInterceptor()
/external/guice/core/src/com/google/inject/
DAbstractModule.java169 Matcher<? super Method> methodMatcher, in bindInterceptor() argument
171 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
DPrivateModule.java227 Matcher<? super Method> methodMatcher, in bindInterceptor() argument
229 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
DBinder.java227 Matcher<? super Method> methodMatcher, in bindInterceptor() argument
/external/guice/core/test/com/google/inject/spi/
DElementsTest.java692 final Matcher<Object> methodMatcher = Matchers.any(); in testBindIntercepor() local
703 bindInterceptor(classMatcher, methodMatcher, methodInterceptor); in testBindIntercepor()
710 assertSame(methodMatcher, command.getMethodMatcher()); in testBindIntercepor()