BrightSide Workbench Full Report + Source Code
org.turro.web.funnel.graph.FunnelGraphDOT Class Reference
Inheritance diagram for org.turro.web.funnel.graph.FunnelGraphDOT:
Collaboration diagram for org.turro.web.funnel.graph.FunnelGraphDOT:

Static Public Member Functions

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

Protected Attributes

final Cached< Daodao = Cached.instance(() -> new ElephantPU())
 

Detailed Description

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

Definition at line 42 of file FunnelGraphDOT.java.

Member Function Documentation

◆ DOT()

static void org.turro.web.funnel.graph.FunnelGraphDOT.DOT ( Writer  writer)
static

Definition at line 76 of file FunnelGraphDOT.java.

76  {
77  GraphUtil.<FunnelVertexDOT, DefaultEdge>toDOT(writer, load(),
78  fi -> Strings.identifier(fi.getIdentifier()),
79  (fi) -> {
80  Map<String, Attribute> map = new LinkedHashMap<>();
81  map.put("color", DefaultAttribute.createAttribute(fi.getColor()));
82  map.put("fontcolor", DefaultAttribute.createAttribute("#FFFFFF"));
83  map.put("label", DefaultAttribute.createAttribute(fi.getCaption()));
84  return map;
85  });
86  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ load()

static FunnelGraphDOT org.turro.web.funnel.graph.FunnelGraphDOT.load ( )
static

Definition at line 90 of file FunnelGraphDOT.java.

90  {
91  return new FunnelGraphDOT();
92  }
Here is the caller graph for this function:

Member Data Documentation

◆ dao

final Cached<Dao> org.turro.web.funnel.graph.FunnelGraphDOT.dao = Cached.instance(() -> new ElephantPU())
protected

Definition at line 102 of file FunnelGraphDOT.java.


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