H A D | ManyConstructorsTest.java | 273 Farm pops = factory.popsFarm("Pop"); in testDependenciesAndOtherAnnotations() 276 Farm moms = factory.momsFarm("Mom"); in testDependenciesAndOtherAnnotations() 279 Farm momAndPop = factory.momAndPopsFarm("Mom", "Pop"); in testDependenciesAndOtherAnnotations() 285 Farm popsFarm(String pop); in popsFarm() 287 Farm momsFarm(@Assisted("mom") String mom); in momsFarm() 289 Farm momAndPopsFarm(@Assisted("mom") String mom, @Assisted("pop") String pop); in momAndPopsFarm() 292 public static class Farm { class in ManyConstructorsTest 297 Farm(@Assisted String pop, Dog dog) { in Farm() method in ManyConstructorsTest.Farm 302 Farm(@Assisted("mom") String mom, @Assisted("pop") String pop, Cow cow, Dog dog) { in Farm() method in ManyConstructorsTest.Farm 308 Farm(@Assisted("mom") String mom, Cow cow) { in Farm() method in ManyConstructorsTest.Farm
|