Home
last modified time | relevance | path

Searched refs:forConstructorOf (Results 1 – 6 of 6) sorted by relevance

/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java43 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Simple.class); in testSimpleCase()
82 new ProxyFactory<Foo>(InjectionPoint.forConstructorOf(Foo.class), aspects).create(); in testInterceptOneMethod()
84 new ProxyFactory<Bar>(InjectionPoint.forConstructorOf(Bar.class), aspects).create(); in testInterceptOneMethod()
136 new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testWithConstructorArguments()
151 new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testNotProxied()
177 new ProxyFactory<Counter>(InjectionPoint.forConstructorOf(Counter.class), aspects); in testMultipleInterceptors()
/external/guice/core/src/com/google/inject/spi/
DInjectionPoint.java240 public static InjectionPoint forConstructorOf(TypeLiteral<?> type) { in forConstructorOf() method in InjectionPoint
305 public static InjectionPoint forConstructorOf(Class<?> type) { in forConstructorOf() method in InjectionPoint
306 return forConstructorOf(TypeLiteral.get(type)); in forConstructorOf()
/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java194 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Constructable.class); in testForConstructorOf()
258 InjectionPoint constructor = InjectionPoint.forConstructorOf(type); in testAddForParameterizedInjections()
/external/guice/core/src/com/google/inject/internal/
DConstructorBindingImpl.java115 constructorInjector = InjectionPoint.forConstructorOf(key.getTypeLiteral()); in create()
/external/guice/core/test/com/google/inject/
DBindingTest.java528 (Constructor)InjectionPoint.forConstructorOf(Bacon.class).getMember()); in testTurkeyBaconProblemUsingToConstuctor()
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider2.java552 return InjectionPoint.forConstructorOf(implementation); in findMatchingConstructorInjectionPoint()