Package me.datafox.dfxengine.injector
Class InjectorImpl
java.lang.Object
me.datafox.dfxengine.injector.InjectorImpl
- All Implemented Interfaces:
Injector
A dependency injector. For general information, see
README.md on GitHub. Use
InjectorBuilder
to build.
getComponent(Class)
, getComponent(TypeRef)
, getComponent(Class, Class)
,
getComponent(TypeRef, TypeRef)
, getComponents(Class)
, getComponents(TypeRef)
,
getComponents(Class, Class)
and getComponents(TypeRef, TypeRef)
can be used to retrieve components.
The requesting
parameter is only relevant when requesting components that have
InstantiationPolicy.PER_INSTANCE
.
-
Nested Class Summary
Nested Classes -
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, useInjector.getComponent(TypeRef)
instead. Otherwise, an exception is thrown. An exception is also thrown if multiple Components or no Components are present.- Specified by:
getComponent
in interfaceInjector
- 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 parametersMultipleDependenciesPresentException
- if multipleComponents
with the specified type are presentNoDependenciesPresentException
- if noComponents
with the specified type are present
-
getComponent
Returns a singleComponent
of the specified type. If multiple Components or no Components are present, an exception is thrown.- Specified by:
getComponent
in interfaceInjector
- Type Parameters:
T
- type of theComponent
to be requested- Parameters:
type
- type of theComponent
to be requested- Returns:
Component
of the specified type- Throws:
MultipleDependenciesPresentException
- if multipleComponents
with the specified type are presentNoDependenciesPresentException
- if noComponents
with the specified type are present
-
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, useInjector.getComponent(TypeRef)
instead. An exception is also thrown if multiple Components or no Components are present.- Specified by:
getComponent
in interfaceInjector
- 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 parametersMultipleDependenciesPresentException
- if multipleComponents
with the specified type are presentNoDependenciesPresentException
- if noComponents
with the specified type are present
-
getComponent
Returns a singleComponent
of the specified type. If the Component hasInstantiationPolicy.PER_INSTANCE
and depends onInstantiationDetails
, therequesting
parameter will be used forInstantiationDetails
. If multiple Components or no Components are present, an exception is thrown.- Specified by:
getComponent
in interfaceInjector
- 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:
MultipleDependenciesPresentException
- if multipleComponents
with the specified type are presentNoDependenciesPresentException
- if noComponents
with the specified type are present
-
getComponents
ReturnsComponents
of the specified type. If theClass
has type parameters, useInjector.getComponents(TypeRef)
instead. Otherwise, an exception is thrown.- Specified by:
getComponents
in interfaceInjector
- 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.- Specified by:
getComponents
in interfaceInjector
- Type Parameters:
T
- type of theComponents
to be requested- Parameters:
type
- type of theComponents
to be requested- Returns:
List
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, useInjector.getComponent(TypeRef)
instead. Otherwise, an exception is thrown.- Specified by:
getComponents
in interfaceInjector
- 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
.- Specified by:
getComponents
in interfaceInjector
- 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
public <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
.- Specified by:
invokeEvent
in interfaceInjector
- 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
.- Specified by:
invokeEvents
in interfaceInjector
- Parameters:
events
- events to be invoked
-