public final class InjectionRequest<T> extends Object implements Element
requestInjection() statements:
requestInjection(serviceInstance);| Constructor and Description |
|---|
InjectionRequest(Object source,
TypeLiteral<T> type,
T instance) |
| Modifier and Type | Method and Description |
|---|---|
<R> R |
acceptVisitor(ElementVisitor<R> visitor)
Accepts an element visitor.
|
void |
applyTo(Binder binder)
Writes this module element to the given binder (optional operation).
|
Set<InjectionPoint> |
getInjectionPoints()
Returns the instance methods and fields of
instance that will be injected to fulfill
this request. |
T |
getInstance() |
Object |
getSource()
Returns an arbitrary object containing information about the "place" where this element was
configured.
|
TypeLiteral<T> |
getType() |
public InjectionRequest(Object source, TypeLiteral<T> type, T instance)
public Object getSource()
ElementTools 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.
public T getInstance()
public TypeLiteral<T> getType()
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 <R> R acceptVisitor(ElementVisitor<R> visitor)
ElementacceptVisitor in interface Elementvisitor - to call back onCopyright © 2006–2018 Google, Inc.. All rights reserved.