com.lazerycode.jmeter.analyzer.ConfigurationCharts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-analysis-maven-plugin Show documentation
Show all versions of jmeter-analysis-maven-plugin Show documentation
Parses JMeter result files and computes performance indicators such as average request duration
The newest version!
/**
*
*/
package com.lazerycode.jmeter.analyzer;
/**
* Configuration of chart generation
*/
public class ConfigurationCharts {
private int width = 950;
private int height = 500;
public int getWidth() {
return width;
}
public void setWidth(int pWidth) {
width = pWidth;
}
public int getHeight() {
return height;
}
public void setHeight(int pHeight) {
height = pHeight;
}
}