else
{
log.debug(" Build leaf node, researcher " + authority);
JsGraph nodeLeaf = new JsGraph();
nodeLeaf.setName(fullName);
JsGraphNodeData dataNodeLeaf = new JsGraphNodeData();
if (authority == null)
{
nodeLeaf.setId(fullName);
dataNodeLeaf.setModeStyle("stroke");
}
else
{
nodeLeaf.setId(authority);
dataNodeLeaf.setModeStyle("fill");
}
dataNodeLeaf.setColor(plugin.getNodeCustomColor());
dataNodeLeaf.setType(plugin.getType());
nodeLeaf.setData(dataNodeLeaf);
log.debug(" End build leaf node, internal researcher " + authority);
graph.add(nodeLeaf);
}