Home | History | Annotate | Download | only in assistedinject

Lines Matching defs:build

33  * method's parameters are the arguments required to build the constructed type.
96 * .build(PaymentFactory.class));</pre>
118 * .build(OrderFactory.class));</pre>
177 * install(new FactoryModuleBuilder().build(FruitFactory.class));
194 * .build(CarFactory.class));
319 public <F> Module build(Class<F> factoryInterface) {
320 return build(TypeLiteral.get(factoryInterface));
326 public <F> Module build(TypeLiteral<F> factoryInterface) {
327 return build(Key.get(factoryInterface));
331 public <F> Module build(final Key<F> factoryInterface) {