Searched refs:constructorArgValues (Results 1 – 2 of 2) sorted by relevance
132 .constructorArgValues("hello") in testConstruction_SucceedsIfCorrectArgumentsProvided()478 .constructorArgValues(true) in testHardToConstruct_WorksIfYouSpecifyTheConstructorCorrectly()486 .constructorArgValues(new Object[] { null }) in testHardToConstruct_EvenWorksWhenArgsAreAmbiguous()493 .constructorArgValues(true) in testHardToConstruct_DoesNotInferTypesFromValues()597 .constructorArgValues("asdf", true) in testInvalidConstructorSpecification()718 .constructorArgValues() in testCachingWithMultipleConstructors()724 .constructorArgValues(2) in testCachingWithMultipleConstructors()732 .constructorArgValues(3) in testCachingWithMultipleConstructors()
143 private Object[] constructorArgValues = new Object[0]; field in ProxyBuilder196 public ProxyBuilder<T> constructorArgValues(Object... constructorArgValues) { in constructorArgValues() method in ProxyBuilder197 this.constructorArgValues = constructorArgValues; in constructorArgValues()234 check(constructorArgTypes.length == constructorArgValues.length, in build()246 result = constructor.newInstance(constructorArgValues); in build()