Interface NESTEdgeObject

All Superinterfaces:
Comparable<NESTGraphItemObject>, DataObject, NESTGraphItemObject, PropertyHandler
All Known Subinterfaces:
NESTConstraintEdgeObject, NESTControlflowEdgeObject, NESTDataflowEdgeObject, NESTPartOfEdgeObject
All Known Implementing Classes:
NESTConstraintEdgeObjectImpl, NESTControlflowEdgeObjectImpl, NESTDataflowEdgeObjectImpl, NESTEdgeObjectImpl, NESTPartOfEdgeObjectImpl

public interface NESTEdgeObject extends NESTGraphItemObject
Interface of an Edge of a NEST-graph. Abstract objects of this type represent a directed edge of a NESTgraph.
Author:
Alexander Stromer
  • Method Details

    • getPre

      NESTNodeObject getPre()
      Returns the previous node of the edge.
      Returns:
      The previous node of the edge.
    • setPre

      void setPre(NESTNodeObject preObject)
      Sets the previous node of the edge.
      Parameters:
      preObject - The previous node to set for the edge.
    • getPost

      NESTNodeObject getPost()
      Returns the next node of the edge.
      Returns:
      The next node of the edge.
    • setPost

      void setPost(NESTNodeObject postObject)
      Sets the next node of the edge.
      Parameters:
      postObject - The next node to set for the edge.