All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.plugins.PerfPublisher.Report.Performance Maven / Gradle / Ivy

Go to download

The PerfPublisher plug-in scans for xml tests reports defined in the administration panel and generates trend graphs, computes stats and underline regressions and modifications. The xml files must be generated by your own testing tool.

There is a newer version: 7.97
Show newest version
package hudson.plugins.PerfPublisher.Report;

public class Performance {

	private String unit;
	private double measure;
	private boolean relevant;
	
	public Performance() {
		// TODO Auto-generated constructor stub
	}

	/**
	 * @return the unit
	 */
	public String getUnit() {
		return unit;
	}

	/**
	 * @param unit the unit to set
	 */
	public void setUnit(String unit) {
		this.unit = unit;
	}

	/**
	 * @return the measure
	 */
	public double getMeasure() {
		return measure;
	}

	/**
	 * @param measure the measure to set
	 */
	public void setMeasure(double measure) {
		this.measure = measure;
	}

	/**
	 * @return the relevant
	 */
	public boolean isRelevant() {
		return relevant;
	}

	/**
	 * @param relevant the relevant to set
	 */
	public void setRelevant(boolean relevant) {
		this.relevant = relevant;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy