*/
@SuppressWarnings("NP")
protected List<BuildResultGraph> getAvailableGraphs() {
List<BuildResultGraph> availableGraphs = Lists.newArrayList();
availableGraphs.add(new NewVersusFixedGraph());
availableGraphs.add(new PriorityGraph());
availableGraphs.add(new TotalsGraph());
if (hasValidResults()) {
availableGraphs.add(new HealthGraph(getLastAction().getHealthDescriptor()));
}