Interface Injector
- All Known Implementing Classes:
InjectorImpl
public interface Injector
An interface for a dependency injector. For general information, see
README.md on GitHub.
-
Method Summary
Modifier and TypeMethodDescription<T> T
getComponent
(Class<T> type) Returns a singleComponent
of the specified type.<T,
R> T getComponent
(Class<T> type, Class<R> requesting) Returns a singleComponent
of the specified type.<T> T
getComponent
(TypeRef<T> type) Returns a singleComponent
of the specified type.<T,
R> T getComponent
(TypeRef<T> type, TypeRef<R> requesting) Returns a singleComponent
of the specified type.<T> List
<T> getComponents
(Class<T> type) ReturnsComponents
of the specified type.<T,
R> List <T> getComponents
(Class<T> type, Class<R> requesting) ReturnsComponents
of the specified type.<T> List
<T> getComponents
(TypeRef<T> type) ReturnsComponents
of the specified type.<T,
R> List <T> getComponents
(TypeRef<T> type, TypeRef<R> requesting) ReturnsComponents
of the specified type.<T> void
invokeEvent
(T event) Calls allEventHandlers
with the specified event that can accept its type as a parameter.void
invokeEvents
(Collection<?> events) Calls allEventHandlers
with the specified events that can accept their types as parameters.
-
Method Details
-
getComponent
Returns a singleComponent
of the specified type. If theClass
has type parameters, usegetComponent(TypeRef)
instead. Otherwise, an exception is thrown.- Type Parameters:
T
- type of theComponent
to be requested- Parameters:
type
- type of theComponent
to be requested- Returns:
Component
of the specified type- Throws:
ParameterCountMismatchException
- if theClass
has type parameters
-
getComponent
Returns a singleComponent
of the specified type. -
getComponent
Returns a singleComponent
of the specified type. If the Component hasInstantiationPolicy.PER_INSTANCE
and depends onInstantiationDetails
, therequesting
parameter will be used forInstantiationDetails
. If theClass
has type parameters, usegetComponent(TypeRef)
instead.- Type Parameters:
T
- type of theComponent
to be requestedR
- type of the object requesting theComponent
- Parameters:
type
- type of theComponent
to be requestedrequesting
- type of the object requesting theComponent
- Returns:
Component
of the specified type- Throws:
ParameterCountMismatchException
- if the type or requestingClass
has type parameters
-
getComponent
Returns a singleComponent
of the specified type. If the Component hasInstantiationPolicy.PER_INSTANCE
and depends onInstantiationDetails
, therequesting
parameter will be used forInstantiationDetails
. -
getComponents
ReturnsComponents
of the specified type. If theClass
has type parameters, usegetComponents(TypeRef)
instead. Otherwise, an exception is thrown.- Type Parameters:
T
- type of theComponents
to be requested- Parameters:
type
- type of theComponents
to be requested- Returns:
List
ofComponents
of the specified type- Throws:
ParameterCountMismatchException
- if theClass
has type parameters
-
getComponents
ReturnsComponents
of the specified type.- Type Parameters:
T
- type of theComponents
to be requested- Parameters:
type
- type of theComponents
to be requested- Returns:
List
ofComponents
of the specified type
-
getComponents
ReturnsComponents
of the specified type. If any of the Components haveInstantiationPolicy.PER_INSTANCE
and depend onInstantiationDetails
, therequesting
parameter will be used forInstantiationDetails
. If theClass
has type parameters, usegetComponent(TypeRef)
instead. Otherwise, an exception is thrown.- Type Parameters:
T
- type of theComponents
to be requestedR
- type of the object requesting theComponents
- Parameters:
type
- type of theComponents
to be requestedrequesting
- type of the object requesting theComponents
- Returns:
List
ofComponents
of the specified type- Throws:
ParameterCountMismatchException
- if the type or requestingClass
has type parameters
-
getComponents
ReturnsComponents
of the specified type. If any of the Components havInstantiationPolicy.PER_INSTANCE
and depend onInstantiationDetails
, therequesting
parameter will be used forInstantiationDetails
.- Type Parameters:
T
- type of theComponents
to be requestedR
- type of the object requesting theComponents
- Parameters:
type
- type of theComponents
to be requestedrequesting
- type of the object requesting theComponents
- Returns:
List
ofComponents
of the specified type
-
invokeEvent
<T> void invokeEvent(T event) Calls allEventHandlers
with the specified event that can accept its type as a parameter. If the event has type parameters, it must implementParametricEvent
.- Type Parameters:
T
- type of the event- Parameters:
event
- event to be invoked
-
invokeEvents
Calls allEventHandlers
with the specified events that can accept their types as parameters. If an event has type parameters, it must implementParametricEvent
.- Parameters:
events
- events to be invoked
-