public final class StaticInjectionRequest extends java.lang.Object implements Element
requestStaticInjection() statements:
requestStaticInjection(MyLegacyService.class);| Modifier and Type | Field and Description |
|---|---|
private java.lang.Object |
source |
private java.lang.Class<?> |
type |
| Constructor and Description |
|---|
StaticInjectionRequest(java.lang.Object source,
java.lang.Class<?> 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).
|
java.util.Set<InjectionPoint> |
getInjectionPoints()
Returns the static methods and fields of
type that will be injected to fulfill this
request. |
java.lang.Object |
getSource()
Returns an arbitrary object containing information about the "place" where this element was
configured.
|
java.lang.Class<?> |
getType() |
private final java.lang.Object source
private final java.lang.Class<?> type
StaticInjectionRequest(java.lang.Object source,
java.lang.Class<?> 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 java.lang.Class<?> getType()
public java.util.Set<InjectionPoint> getInjectionPoints() throws ConfigurationException
type that will be injected to fulfill this
request.ConfigurationException - if there is a malformed injection point on type, such as
a field with multiple binding annotations. The exception's partial value is a Set<InjectionPoint>
of the valid injection points.public void applyTo(Binder binder)
Elementpublic <T> T acceptVisitor(ElementVisitor<T> visitor)
ElementacceptVisitor in interface Elementvisitor - to call back on