28 String text=head!=
null ? head :
"";
30 return tail!=
null ? text+
","+tail : text;
35 String text=head!=
null ? head+
"," :
"";
37 return tail!=
null ? text+tail : text;
Decorator for items of Graphvizable objects.
String getFullNodeDecoration(GraphvizDecorable object)
concatenates getAllNodesDecoration and getNodeDecoration
String getAllNodesDecoration()
get standard decoration for all nodes (list head)
String getNodeDecoration(GraphvizDecorable object)
get node decoration
String getFullEdgeDecoration(GraphvizDecorable object)
concatenates getAllEdgesDecoration and getEdgeDecoration
String getGlobalStyle()
get global style (returns same for all nodes/edges)
String getAllEdgesDecoration()
get standard decoration for all edges (list head)
String getEdgeDecoration(GraphvizDecorable object)
get node decoration
String getGraphDecoration(GraphvizDecorable object)
get graph decoration (returns same for all nodes/edges)
Interface for decorating items of Graphvizable objects.