Class AbstractDependency
java.lang.Object
me.datafox.dfxengine.dependencies.AbstractDependency
- All Implemented Interfaces:
Dependency
- Direct Known Subclasses:
DependencyDependent
A class with values that values of other classes depend on. A class with values depending on the implementing class
should implement Dependent
, and all dependencies should be added to the class implementing this interface
with addDependent(Dependent)
or addDependents(Collection)
. The implementation of these methods
must check for cyclic dependencies and throw IllegalArgumentException
if one would be caused by the
operation.
The cyclic dependency detection in this class will only detect dependent dependencies that implement both
Dependency
and Dependent
. It is recommended to extend DependencyDependent
where possible for
all cases where both interfaces would be implemented.
-
Field Summary
FieldsModifier and TypeFieldDescriptionSet ofDependencies
for this dependent.protected final org.slf4j.Logger
Logger
for this dependent. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
addDependent
(Dependent dependent) Register aDependent
that depends on this class.boolean
addDependents
(Collection<? extends Dependent> dependents) RegisterDependents
that depends on this class.boolean
containsDependent
(Dependent dependent) boolean
containsDependentRecursive
(Dependent dependent) Checks if the specifiedDependent
is registered to this class or any of its dependents that also implement dependent, recursively.boolean
containsDependents
(Collection<? extends Dependent> dependents) boolean
containsDependentsRecursive
(Collection<? extends Dependent> dependents) Checks if all the specifiedDependents
are registered to this class or any of its dependencies that also implement dependent, recursively.void
CallsDependent.invalidate()
on allDependents
of this class.boolean
removeDependent
(Dependent dependent) boolean
removeDependents
(Collection<? extends Dependent> dependents)
-
Field Details
-
logger
protected final org.slf4j.Logger loggerLogger
for this dependent. -
dependents
Set ofDependencies
for this dependent.
-
-
Constructor Details
-
AbstractDependency
protected AbstractDependency(org.slf4j.Logger logger) - Parameters:
logger
-Logger
for this dependent
-
-
Method Details
-
getDependents
- Specified by:
getDependents
in interfaceDependency
- Returns:
- all
Dependents
that depend on this class
-
invalidateDependents
public void invalidateDependents()CallsDependent.invalidate()
on allDependents
of this class.- Specified by:
invalidateDependents
in interfaceDependency
-
addDependent
Register aDependent
that depends on this class. The method must check for cyclic dependencies and throwIllegalArgumentException
if one is detected.- Specified by:
addDependent
in interfaceDependency
- Parameters:
dependent
-Dependent
that depends on this class- Returns:
true
if the registeredDependents
changed as a result of this operation- Throws:
IllegalArgumentException
- if this operation would cause a cyclic dependency
-
addDependents
RegisterDependents
that depends on this class. The method must check for cyclic dependencies and throwIllegalArgumentException
if one is detected.- Specified by:
addDependents
in interfaceDependency
- Parameters:
dependents
-Dependencies
that depend on this class- Returns:
true
if the registeredDependents
changed as a result of this operation- Throws:
IllegalArgumentException
- if this operation would cause a cyclic dependency
-
removeDependent
- Specified by:
removeDependent
in interfaceDependency
- Parameters:
dependent
-Dependent
to be removed- Returns:
true
if the registeredDependents
changed as a result of this operation
-
removeDependents
- Specified by:
removeDependents
in interfaceDependency
- Parameters:
dependents
-Dependents
to be removed- Returns:
true
if the registeredDependents
changed as a result of this operation
-
containsDependent
- Specified by:
containsDependent
in interfaceDependency
- Parameters:
dependent
-Dependent
to be checked for- Returns:
true
if the specifiedDependent
is registered to this class
-
containsDependents
- Specified by:
containsDependents
in interfaceDependency
- Parameters:
dependents
-Dependents
to be checked for- Returns:
true
if all the specifiedDependents
are registered to this class
-
containsDependentRecursive
Checks if the specifiedDependent
is registered to this class or any of its dependents that also implement dependent, recursively. In practice any dependent that depends on this class, directly or indirectly, would cause this method to returntrue
.- Specified by:
containsDependentRecursive
in interfaceDependency
- Parameters:
dependent
-Dependent
to be checked for- Returns:
true
if the specifiedDependent
is registered to this class or any of its dependents that also implement dependent, recursively
-
containsDependentsRecursive
Checks if all the specifiedDependents
are registered to this class or any of its dependencies that also implement dependent, recursively. In practice any collection of dependencies that depend on this class, directly or indirectly, would cause this method to returntrue
.- Specified by:
containsDependentsRecursive
in interfaceDependency
- Parameters:
dependents
-Dependencies
to be checked for- Returns:
true
if the specifiedDependencies
are registered to this class or any of its dependencies that also implement dependent, recursively
-
dependentStream
- Specified by:
dependentStream
in interfaceDependency
- Returns:
Stream
of allDependents
that are registered to this class
-
recursiveDependentStream
- Specified by:
recursiveDependentStream
in interfaceDependency
- Returns:
Stream
of allDependents
that are registered to this class or any of its dependents that also implement dependency, recursively
-