Searched refs:AssistedConstructor (Results 1 – 2 of 2) sorted by relevance
164 private final Map<Method, AssistedConstructor<?>> factoryMethodToConstructor;172 Map<Method, AssistedConstructor<?>> factoryMethodToConstructor in newFactory()203 Map<Method, AssistedConstructor<?>> factoryMethodToConstructor) { in FactoryProvider()213 for (AssistedConstructor<?> c : factoryMethodToConstructor.values()) { in setInjectorAndCheckUnboundParametersAreInjectable()227 for (Map.Entry<Method, AssistedConstructor<?>> entry : factoryMethodToConstructor.entrySet()) { in checkDeclaredExceptionsMatch()252 private static Map<Method, AssistedConstructor<?>> createMethodMapping( in createMethodMapping()254 List<AssistedConstructor<?>> constructors = Lists.newArrayList(); in createMethodMapping()258 AssistedConstructor<?> assistedConstructor = AssistedConstructor.create( in createMethodMapping()276 Map<ParameterListKey, AssistedConstructor<?>> paramsToConstructor = Maps.newHashMap(); in createMethodMapping()278 for (AssistedConstructor<?> c : constructors) { in createMethodMapping()[all …]
40 class AssistedConstructor<T> { class46 public static <T> AssistedConstructor<T> create( in create()48 return new AssistedConstructor<T>(constructor, parameterTypes); in create()51 private AssistedConstructor(Constructor<T> constructor, List<TypeLiteral<?>> parameterTypes) { in AssistedConstructor() method in AssistedConstructor