Java tutorial
package org.codehaus.mojo.dashboard.report.plugin.chart.time; /* * Copyright 2007 David Vicente * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.awt.Paint; import java.util.Date; import java.util.Iterator; import java.util.List; import java.util.ResourceBundle; import org.codehaus.mojo.dashboard.report.plugin.beans.SurefireReportBean; import org.jfree.chart.ChartColor; import org.jfree.data.time.TimeSeries; public class SurefireTimeChartStrategy extends AbstractTimeChartStrategy { public SurefireTimeChartStrategy(ResourceBundle bundle, String title, List results, String timeUnit, Date startDate, Date endDate) { super(bundle, title, results, timeUnit, startDate, endDate); } public void fillDataset() { TimeSeries s1 = new TimeSeries(this.bundle.getString("report.surefire.label.tests"), this.periodClass); TimeSeries s2 = new TimeSeries(this.bundle.getString("report.surefire.label.errors"), this.periodClass); TimeSeries s3 = new TimeSeries(this.bundle.getString("report.surefire.label.failures"), this.periodClass); TimeSeries s4 = new TimeSeries(this.bundle.getString("report.surefire.label.skipped"), this.periodClass); Iterator iter = mResults.iterator(); while (iter.hasNext()) { SurefireReportBean surefire = (SurefireReportBean) iter.next(); Date date = surefire.getDateGeneration(); s1.addOrUpdate(getChartDate(this.timePeriod.normalize(date)), surefire.getNbTests()); s2.addOrUpdate(getChartDate(this.timePeriod.normalize(date)), surefire.getNbErrors()); s3.addOrUpdate(getChartDate(this.timePeriod.normalize(date)), surefire.getNbFailures()); s4.addOrUpdate(getChartDate(this.timePeriod.normalize(date)), surefire.getNbSkipped()); } defaultdataset.addSeries(s1); defaultdataset.addSeries(s2); defaultdataset.addSeries(s3); defaultdataset.addSeries(s4); } /** * */ public Paint[] getPaintColor() { return new Paint[] { ChartColor.GREEN, ChartColor.RED, ChartColor.ORANGE, ChartColor.YELLOW }; } }