public final class MembersInjectorLookup<T> extends Objectimplements Element
getMembersInjector() statements:
MembersInjector<PaymentService> membersInjector
= getMembersInjector(PaymentService.class);
| Constructor and Description |
|---|
MembersInjectorLookup(Object
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
acceptVisitor(ElementVisitor
Accepts an element visitor.
|
void |
applyTo(Binder
Writes this module element to the given binder (optional operation).
|
MembersInjector |
getDelegate()
Returns the delegate members injector, or
null if it has not yet been initialized.
|
MembersInjector |
getMembersInjector()
Returns the looked up members injector.
|
Object |
getSource()
Returns an arbitrary object containing information about the "place" where this element was configured.
|
TypeLiteral |
getType()
Gets the type containing the members to be injected.
|
void |
initializeDelegate(MembersInjector
Sets the actual members injector.
|
public MembersInjectorLookup(Objectsource, TypeLiteral <T> type)
public ObjectgetSource()
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.
public TypeLiteral<T> getType()
public <T> T acceptVisitor(ElementVisitor<T> visitor)
Element
acceptVisitor in interface
Element
visitor - to call back on
public void initializeDelegate(MembersInjector<T> delegate)
IllegalStateException - if the delegate is already set
public void applyTo(Binderbinder)
Element
public 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 MembersInjector<T> getMembersInjector()
IllegalStateException if you try to use it beforehand.