blob: 0e7e639265372719450f0abdb4e570ccef80c0cf [file] [log] [blame]
[*Generates a Graphviz graph for the project plan*]
digraph G {
node[fontname="Arial",style="filled",fillcolor="azure"]
edge[fontname="Arial"]
[*Create a node for each person*]
[%for (p in Person.all){%]
[%=p.getNodeId()%][label="[%=p.name%]"]
[%}%]
[*Create a node for each task*]
[%for (t in Task.all){%]
[%=t.getNodeId()%][label="[%=t.title%]", fillcolor="wheat"]
[*Link the person nodes with the task nodes*]
[%for (e in t.effort){%]
[%=e.person.getNodeId()%]->[%=t.getNodeId()%][label="[%=e.percentage%]%"]
[%}%]
[%}%]
}
[*Uncomment to see the generated Graphviz code*]
[*%out.toString().println();%*]
[%
operation Any getNodeId() {
return "n" + M.allInstances.indexOf(self);
}
%]