com.google.inject.Inject |
Annotates members of your implementation class (constructors, methods
and fields) into which the Injector
should inject values.
The Injector fulfills injection requests for:
@Inject
or must have a
constructor taking no parameters. The Injector then proceeds to perform
method and field injections.
injectMembers(Object)
,
toInstance(Object)
and
toProvider(Provider)
.
In this case all constructors are, of course, ignored.
Module
has
specifically requested static injection for, using
requestStaticInjection(Class>...)
.
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
java.lang.annotation.Annotation
|