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

Static Public Member Functions

static void DOT (Writer writer)
 
static EntityGraph load ()
 

Detailed Description

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

Definition at line 37 of file EntityGraph.java.

Member Function Documentation

◆ DOT()

static void org.turro.entities.graph.EntityGraph.DOT ( Writer  writer)
static

Definition at line 49 of file EntityGraph.java.

49  {
50  GraphUtil.<EntityVertex, DefaultEdge>toDOT(writer, load(),
51  fi -> Strings.identifier(fi.getIdentifier()),
52  (fi) -> {
53  Map<String, Attribute> map = new LinkedHashMap<>();
54  map.put("color", DefaultAttribute.createAttribute(fi.getColor()));
55  map.put("fontcolor", DefaultAttribute.createAttribute(fi.getFontColor()));
56  map.put("label", DefaultAttribute.createAttribute(fi.getName()));
57  return map;
58  });
59  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ load()

static EntityGraph org.turro.entities.graph.EntityGraph.load ( )
static

Definition at line 63 of file EntityGraph.java.

63  {
64  return new EntityGraph();
65  }
Here is the caller graph for this function:

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