Searched refs:BProvider (Results 1 – 1 of 1) sorted by relevance
244 bind(B.class).toProvider(BProvider.class); in testBindProviderClass()245 bind(B.class).annotatedWith(Names.named("1")).toProvider(BProvider.class); in testBindProviderClass()246 bind(B.class).annotatedWith(Names.named("2")).toProvider(Key.get(BProvider.class)); in testBindProviderClass()247 bind(B.class).annotatedWith(Names.named("3")).toProvider(TypeLiteral.get(BProvider.class)); in testBindProviderClass()470 static class BProvider implements Provider<B> { class