Layer Dependencies
Represents the dependency configuration for a layer within an architecture.
This interface provides methods to define dependencies between layers in an architecture.
Functions
Adds dependencies between the current layer and the specified list of layers.
Adds dependencies between each layer in the collection and the specified layer.
Adds dependencies between each layer in the collection and the specified layers.
Adds dependencies between the current layer and the specified layers.
Specifies that the current layer does not depend on any other layer.
Specifies that none of the layers in the collection depend on any other layer.
Specifies that the current layer does not depend on the given list of layers.
Specifies that none of the layers in the collection depend on the specified layer.
Specifies that none of the layers in the collection depend on any of the specified layers.
Specifies that the current layer does not depend on any given layer.
This function is used to include a Layer in the architecture without specifying any dependencies. It can be used in combination with dependsOnNothing() to specify that a layer does not depend on any other layer.
Includes all layers from the collection in the architecture without specifying any dependencies. This can be used in combination with dependsOnNothing() to specify that multiple layers do not depend on any other layer.