Searched refs:constructorArgTypes (Results 1 – 2 of 2) sorted by relevance
61 .constructorArgTypes(String.class) in testConstruction_SucceedsIfCorrectArgumentsProvided()331 .constructorArgTypes(Boolean.class) in testHardToConstruct_WorksIfYouSpecifyTheConstructorCorrectly()338 .constructorArgTypes(Boolean.class) in testHardToConstruct_EvenWorksWhenArgsAreAmbiguous()449 .constructorArgTypes(String.class, Boolean.class) in testInvalidConstructorSpecification()551 .constructorArgTypes() in testCachingWithMultipleConstructors()557 .constructorArgTypes(int.class) in testCachingWithMultipleConstructors()565 .constructorArgTypes(Integer.class) in testCachingWithMultipleConstructors()
133 private Class<?>[] constructorArgTypes = new Class[0]; field in ProxyBuilder185 public ProxyBuilder<T> constructorArgTypes(Class<?>... constructorArgTypes) { in constructorArgTypes() argument186 this.constructorArgTypes = constructorArgTypes; in constructorArgTypes()203 check(constructorArgTypes.length == constructorArgValues.length, in build()208 constructor = proxyClass.getConstructor(constructorArgTypes); in build()211 + " with parameter types " + Arrays.toString(constructorArgTypes)); in build()