Searched refs:constructorArgValues (Results 1 – 2 of 2) sorted by relevance
126 .constructorArgValues("hello") in testConstruction_SucceedsIfCorrectArgumentsProvided()453 .constructorArgValues(true) in testHardToConstruct_WorksIfYouSpecifyTheConstructorCorrectly()461 .constructorArgValues(new Object[] { null }) in testHardToConstruct_EvenWorksWhenArgsAreAmbiguous()468 .constructorArgValues(true) in testHardToConstruct_DoesNotInferTypesFromValues()570 .constructorArgValues("asdf", true) in testInvalidConstructorSpecification()675 .constructorArgValues() in testCachingWithMultipleConstructors()681 .constructorArgValues(2) in testCachingWithMultipleConstructors()689 .constructorArgValues(3) in testCachingWithMultipleConstructors()
141 private Object[] constructorArgValues = new Object[0]; field in ProxyBuilder188 public ProxyBuilder<T> constructorArgValues(Object... constructorArgValues) { in constructorArgValues() argument189 this.constructorArgValues = constructorArgValues; in constructorArgValues()211 check(constructorArgTypes.length == constructorArgValues.length, in build()223 result = constructor.newInstance(constructorArgValues); in build()