net.nemerosa.ontrack.model.links.BranchLinksEdge.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.links
/**
* Edge between two [nodes][BranchLinksNode] in a graph of branch links.
*
* @property direction Edge direction (dependency relationship)
* @property linkedTo Target of the edge
* @property decorations Decorations for this edge
*/
class BranchLinksEdge(
val direction: BranchLinksDirection,
val linkedTo: BranchLinksNode,
val decorations: List
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy