OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BImpl
(Results
1 - 2
of
2
) sorted by null
/external/guice/core/test/com/google/inject/
CircularDependencyTest.java
43
BImpl
.nextId = 0;
51
bind(B.class).to(
BImpl
.class);
63
@Provides B b(A a) { return new
BImpl
(a); }
81
return new
BImpl
(ap.get());
113
assertEquals(1,
BImpl
.nextId);
166
static class
BImpl
implements B {
171
@Inject public
BImpl
(A a) {
188
return new
BImpl
(ap.get());
ProvisionListenerTest.java
563
bind(B.class).to(
BImpl
.class);
580
chain.add(B.class).add(
BImpl
.class);
581
bindListener(keyMatcher(
BImpl
.class), new ChainAsserter(pList, chain.build()));
605
of(Instance.class, A.class,
BImpl
.class, C.class, DP.class, D.class, E.class, F.class),
692
private static class
BImpl
implements B {
Completed in 70 milliseconds