ApiEdge

data class ApiEdge(val source: String, val target: String, val relations: List<String>, val functions: List<String>)(source)

Represents an edge between to nodes of an ApiGraph.

Author

Jan Müller

Constructors

Link copied to clipboard
constructor(source: String, target: String, relations: List<String>, functions: List<String>)

Creates an ApiEdge with the given parameters.

Properties

Link copied to clipboard

List of function symbols. Each must start with a lowercase letter.

Link copied to clipboard

List of relation symbols. Each must start with an uppercase letter.

Link copied to clipboard

The name of the source node.

Link copied to clipboard

The name of the target node.