CPD Results

The following document contains the results of PMD's CPD 3.9.

Duplications

File Line
org\whatsitcalled\webflange\webapp\ReportsPanel.java 450
org\whatsitcalled\webflange\webapp\ReportsPanel.java 528
					new PageParameters("testId=" + run.getLoadTest().getId()));
			link.add(new Label("test", name));
			item.add(link);
			item.add(new Label("errors", Long.toString(summary.getErrors())));
			item.add(new Label("meanResponseLength", Long.toString(summary
					.getMeanResponseLength())));
			item.add(new Label("meanTestTime", Long.toString(summary
					.getMeanTestTime())));
			item.add(new Label("meanTimeToEstablishConnection", Long
					.toString(summary.getMeanTimeToEstablishConnection())));
			item.add(new Label("meanTimeToFirstByte", Long.toString(summary
					.getMeanTimeToFirstByte())));
			item.add(new Label("meanTimeToResolveHost", Long.toString(summary
					.getMeanTimeToResolveHost())));
			item.add(new Label("responseBytesPerSecond", Long.toString(summary
					.getResponseBytesPerSecond())));
			item.add(new Label("responseErrors", Long.toString(summary
					.getResponseErrors())));
			item.add(new Label("tests", Long.toString(summary.getTests())));
			item.add(new Label("testTimeStandardDeviation", Float
					.toString(summary.getTestTimeStandardDeviation())));

			item.add(new Label("uri", summary.getTestUri()));

File Line
org\whatsitcalled\webflange\service\ChartServiceImpl.java 105
org\whatsitcalled\webflange\service\ChartServiceImpl.java 212
		XYSeriesCollection dataset = new XYSeriesCollection();
		// add all selected series to the dataset
		if (chart.isShowTests())
			dataset.addSeries(testsSeries);
		if (chart.isShowErrors())
			dataset.addSeries(errorsSeries);
		if (chart.isShowMeanTestTime())
			dataset.addSeries(meanTestTimeSeries);
		if (chart.isShowTestTimeStandardDeviation())
			dataset.addSeries(testTimeStandardDeviationSeries);
		if (chart.isShowMeanResponseLength())
			dataset.addSeries(meanResponseLengthSeries);
		if (chart.isShowResponseBytesPerSecond())
			dataset.addSeries(responseBytesPerSecondSeries);
		if (chart.isShowResponseErrors())
			dataset.addSeries(responseErrorsSeries);
		if (chart.isShowMeanTimeToResolveHost())
			dataset.addSeries(meanTimeToResolveHostSeries);
		if (chart.isShowMeanTimeToEstablishConnection())
			dataset.addSeries(meanTimeToEstablishConnectionSeries);
		if (chart.isShowMeanTimeToFirstByte())
			dataset.addSeries(meanTimeToFirstByteSeries);

		JFreeChart chart1 = ChartFactory.createScatterPlot(chart.getName(), // title