Types

Link copied to clipboard
interface Layout

Interface for common layout information of Projects and Views

Link copied to clipboard
class Point(val x: Int, val y: Int)

A point in a 2D coordinate system

Link copied to clipboard
@DomainNode
@Authorization(name = "READ", allowFromRelated = ["project", "view"])
class RelationLayout(var xCoordinates: IntArray, var yCoordinates: IntArray) : BaseNode

Layout for a Relation

Link copied to clipboard
@DomainNode
@Authorization(name = "READ", allowFromRelated = ["project", "view"])
class RelationPartnerLayout(var x: Int, var y: Int) : BaseNode

Layout for a RelationPartner (ComponentVersion or Interface)

Link copied to clipboard
@DomainNode(searchQueryName = "searchViews")
@Authorization(name = "READ", allowFromRelated = ["project"])
class View(name: String, description: String) : NamedNode, Layout

A view on the architecture graph of a project