Class ProcessModelGraph.InterSystemConnection

java.lang.Object
neqsim.process.processmodel.graph.ProcessModelGraph.InterSystemConnection
All Implemented Interfaces:
Serializable
Enclosing class:
ProcessModelGraph

public static class ProcessModelGraph.InterSystemConnection extends Object implements Serializable
Represents a connection between two sub-systems.
Version:
1.0
Author:
NeqSim
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • sourceSystemName

      private final String sourceSystemName
    • targetSystemName

      private final String targetSystemName
    • sourceNode

      private final ProcessNode sourceNode
    • targetNode

      private final ProcessNode targetNode
    • edge

      private final ProcessEdge edge
  • Constructor Details

  • Method Details

    • getSourceSystemName

      public String getSourceSystemName()
      Returns:
      the name of the source sub-system
    • getTargetSystemName

      public String getTargetSystemName()
      Returns:
      the name of the target sub-system
    • getSourceNode

      public ProcessNode getSourceNode()
      Returns:
      the source node in the source sub-system
    • getTargetNode

      public ProcessNode getTargetNode()
      Returns:
      the target node in the target sub-system
    • getEdge

      public ProcessEdge getEdge()
      Returns:
      the edge connecting the two nodes
    • toString

      public String toString()
      Overrides:
      toString in class Object