public final class MembersInjectorLookup<T> extends java.lang.Object implements Element
getMembersInjector() statements:
MembersInjector<PaymentService> membersInjector
= getMembersInjector(PaymentService.class);| Constructor and Description |
|---|
MembersInjectorLookup(java.lang.Object source,
TypeLiteral<T> type) |
| Modifier and Type | Method and Description |
|---|---|
<T> T |
acceptVisitor(ElementVisitor<T> visitor)
Accepts an element visitor.
|
void |
applyTo(Binder binder)
Writes this module element to the given binder (optional operation).
|
boolean |
equals(java.lang.Object obj) |
MembersInjector<T> |
getDelegate()
Returns the delegate members injector, or
null if it has not yet been initialized. |
java.util.Set<InjectionPoint> |
getInjectionPoints()
Returns the instance methods and fields that will be injected to fulfill this request.
|
MembersInjector<T> |
getMembersInjector()
Returns the looked up members injector.
|
java.lang.Object |
getSource()
Returns an arbitrary object containing information about the "place" where this element was
configured.
|
TypeLiteral<T> |
getType()
Gets the type containing the members to be injected.
|
int |
hashCode() |
void |
initializeDelegate(MembersInjector<T> delegate)
Sets the actual members injector.
|
public MembersInjectorLookup(java.lang.Object source,
TypeLiteral<T> type)
public java.lang.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 TypeLiteral<T> getType()
public <T> T acceptVisitor(ElementVisitor<T> visitor)
ElementacceptVisitor in interface Elementvisitor - to call back onpublic void initializeDelegate(MembersInjector<T> delegate)
java.lang.IllegalStateException - if the delegate is already setpublic void applyTo(Binder binder)
Elementpublic MembersInjector<T> getDelegate()
null if it has not yet been initialized. The
delegate will be initialized when this element is processed, or otherwise used to create an
injector.public java.util.Set<InjectionPoint> getInjectionPoints() throws ConfigurationException
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 MembersInjector<T> getMembersInjector()
IllegalStateException if you try to use it beforehand.public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Object