|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.inject.spi.InjectionRequest
public final class InjectionRequest
A request to inject the instance fields and methods of an instance. Requests are created
explicitly in a module using requestInjection()
statements:
requestInjection(serviceInstance);
Constructor Summary | |
---|---|
InjectionRequest(Object source,
Object instance)
|
Method Summary | ||
---|---|---|
|
acceptVisitor(ElementVisitor<T> visitor)
Accepts an element visitor. |
|
Set<InjectionPoint> |
getInjectionPoints()
Returns the instance methods and fields of instance that will be injected to fulfill
this request. |
|
Object |
getInstance()
|
|
Object |
getSource()
Returns an arbitrary object containing information about the "place" where this element was configured. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public InjectionRequest(Object source, Object instance)
Method Detail |
---|
public Object getSource()
Element
Tools might specially handle types they know about; StackTraceElement
is a good
example. Tools should simply call toString()
on the source object if the type is
unfamiliar.
getSource
in interface Element
public Object getInstance()
public Set<InjectionPoint> getInjectionPoints() throws ConfigurationException
instance
that will be injected to fulfill
this request.
ConfigurationException
- if there is a malformed injection point on the class of instance
, such as a field with multiple binding annotations. The exception's partial value
is a Set<InjectionPoint>
of the valid injection points.public <T> T acceptVisitor(ElementVisitor<T> visitor)
Element
acceptVisitor
in interface Element
visitor
- to call back on
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |