Junction

class Junction : SimpleMolecule

Represents a junction between two cells.

Constructors

Link copied to clipboard
open fun Junction(name: String, moleculesInCurrentNode: Map<Biomolecule, Double>, moleculesInNeighborNode: Map<Biomolecule, Double>)
Build a junction.
Link copied to clipboard
open fun Junction(toClone: Junction)
Builds a junction from another junction.

Functions

Link copied to clipboard
open fun dependsOn(mol: Dependency): Boolean
Link copied to clipboard
open fun equals(obj: Any): Boolean
Link copied to clipboard
fun getName(): String
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
open fun makesDependent(dependency: Dependency): Boolean
Link copied to clipboard
open fun reverse(): Junction
Return the reversed junction of the current junction.
Link copied to clipboard
open fun toString(): String

Properties

Link copied to clipboard
private val moleculesInCurrentNode: Map<Biomolecule, Double>
Link copied to clipboard
private val moleculesInNeighborNode: Map<Biomolecule, Double>