BrightSide Workbench Full Report + Source Code
org.turro.entities.graph.EntityEdge Class Reference
Collaboration diagram for org.turro.entities.graph.EntityEdge:

Public Member Functions

 EntityEdge (EntityVertex source, EntityVertex target)
 
EntityVertex getSource ()
 
EntityVertex getTarget ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 25 of file EntityEdge.java.

Constructor & Destructor Documentation

◆ EntityEdge()

org.turro.entities.graph.EntityEdge.EntityEdge ( EntityVertex  source,
EntityVertex  target 
)

Definition at line 29 of file EntityEdge.java.

29  {
30  this.source = source;
31  this.source.setSource(true);
32  this.target = target;
33  this.target.setSource(false);
34  }
Here is the call graph for this function:

Member Function Documentation

◆ getSource()

EntityVertex org.turro.entities.graph.EntityEdge.getSource ( )

Definition at line 36 of file EntityEdge.java.

36  {
37  return source;
38  }

◆ getTarget()

EntityVertex org.turro.entities.graph.EntityEdge.getTarget ( )

Definition at line 40 of file EntityEdge.java.

40  {
41  return target;
42  }

The documentation for this class was generated from the following file: