Class ModelEdge

java.lang.Object
dk.gtz.graphedit.model.ModelEdge

public class ModelEdge extends Object
An edge from some source to some target. May connect any syntactic element Can be overridden with custom model data if needed.
  • Field Details

    • source

      public UUID source
      Id of the vertex that the edge originates from
    • target

      public UUID target
      Id of the vertex that the edge points to
  • Constructor Details

    • ModelEdge

      public ModelEdge()
      Create a new instance with uninitialized source and target
    • ModelEdge

      public ModelEdge(UUID source, UUID target)
      Create a new instance with a provided source and target
      Parameters:
      source - Id of the source vertex
      target - Id of the target vertex