Interface Dependency
- All Known Implementing Classes:
AbstractDependency
,AbstractModifier
,DependencyDependent
,MappingOperationModifier
,MappingOperationModifier.SpecialValue
,OperationModifier
,StaticValue
,ValueImpl
public interface Dependency
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 dependents 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.-
Method Summary
Modifier and TypeMethodDescriptionboolean
addDependent
(Dependent dependent) Register aDependent
that depends on this class.boolean
addDependents
(Collection<? extends Dependent> dependencies) 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)
-
Method Details
-
getDependents
Collection<Dependent> getDependents()- Returns:
- all
Dependents
that depend on this class
-
invalidateDependents
void invalidateDependents()CallsDependent.invalidate()
on allDependents
of this class. -
addDependent
Register aDependent
that depends on this class. The method must check for cyclic dependencies and throwIllegalArgumentException
if one is detected.- 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.- Parameters:
dependencies
-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
- Parameters:
dependent
-Dependent
to be removed- Returns:
true
if the registeredDependents
changed as a result of this operation
-
removeDependents
- Parameters:
dependents
-Dependents
to be removed- Returns:
true
if the registeredDependents
changed as a result of this operation
-
containsDependent
-
containsDependents
- 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
. -
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
.- 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
- Returns:
Stream
of allDependents
that are registered to this class
-
recursiveDependentStream
- Returns:
Stream
of allDependents
that are registered to this class or any of its dependents that also implement dependency, recursively
-