io.shiftleft.codepropertygraph.generated.edges.Dominate.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codepropertygraph-domain-classes_3 Show documentation
Show all versions of codepropertygraph-domain-classes_3 Show documentation
codepropertygraph-domain-classes
The newest version!
package io.shiftleft.codepropertygraph.generated.edges
import overflowdb._
import scala.jdk.CollectionConverters._
object Dominate {
val Label = "DOMINATE"
object PropertyNames {
val all: Set[String] = Set()
val allAsJava: java.util.Set[String] = all.asJava
}
object Properties {}
object PropertyDefaults {}
val layoutInformation = new EdgeLayoutInformation(Label, PropertyNames.allAsJava)
val factory = new EdgeFactory[Dominate] {
override val forLabel = Dominate.Label
override def createEdge(graph: Graph, outNode: NodeRef[NodeDb], inNode: NodeRef[NodeDb]) =
new Dominate(graph, outNode, inNode)
}
}
class Dominate(_graph: Graph, _outNode: NodeRef[NodeDb], _inNode: NodeRef[NodeDb])
extends Edge(_graph, Dominate.Label, _outNode, _inNode, Dominate.PropertyNames.allAsJava) {
override def propertyDefaultValue(propertyKey: String) = {
propertyKey match {
case _ => super.propertyDefaultValue(propertyKey)
}
}
}