OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IImpl
(Results
1 - 2
of
2
) sorted by null
/external/guice/core/test/com/google/inject/
CircularDependencyTest.java
531
bind(I.class).to(
IImpl
.class);
537
// entry: Key<
IImpl
> (1 - from getInstance call)
539
// entry: Key<
IImpl
> (2 - circular dependency from HImpl)
540
// result of 2nd Key<
IImpl
> - a com.google.inject.$Proxy, because it's a circular proxy
543
// entry: Key<
IImpl
> (3 - another circular dependency, this time from JImpl)
545
// Key<
IImpl
> caching to an instanceof of I, but not an an instanceof of
IImpl
.
548
// for the constructor, because JImpl wants an
IImpl
, not an I.
551
injector.getInstance(
IImpl
.class);
555
"Tried proxying " +
IImpl
.class.getName(
[
all
...]
ImplicitBindingTest.java
57
@ImplementedBy(
IImpl
.class)
62
static class
IImpl
implements I {
Completed in 311 milliseconds