*/
public Graph getWarningsGraph() {
List<ResultAction<?>> results = getActions();
BuildResultGraph graph;
if (results.isEmpty()) {
graph = new NullGraph();
}
else {
graph = configuration.getGraphType();
}
return graph.getGraph(-1, configuration, getPluginName(), results);