|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.elasticsearch.common.inject.spi.MembersInjectorLookup<T>
public final class MembersInjectorLookup<T>
A lookup of the members injector for a type. Lookups are created explicitly in a module using
getMembersInjector()
statements:
MembersInjector<PaymentService> membersInjector = getMembersInjector(PaymentService.class);
Constructor Summary | |
---|---|
MembersInjectorLookup(java.lang.Object source,
TypeLiteral<T> type)
|
Method Summary | ||
---|---|---|
|
acceptVisitor(ElementVisitor<T> visitor)
Accepts an element visitor. |
|
void |
applyTo(Binder binder)
Writes this module element to the given binder (optional operation). |
|
MembersInjector<T> |
getDelegate()
Returns the delegate members injector, or null if it has not yet been initialized. |
|
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. |
|
void |
initializeDelegate(MembersInjector<T> delegate)
Sets the actual members injector. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MembersInjectorLookup(java.lang.Object source, TypeLiteral<T> type)
Method Detail |
---|
public java.lang.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 TypeLiteral<T> getType()
public <T> T acceptVisitor(ElementVisitor<T> visitor)
Element
acceptVisitor
in interface Element
visitor
- to call back onpublic void initializeDelegate(MembersInjector<T> delegate)
java.lang.IllegalStateException
- if the delegate is already setpublic void applyTo(Binder binder)
Element
applyTo
in interface Element
binder
- to apply configuration element topublic 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.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |