kg.apc.charting.elements.GraphPanelChartSimpleElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-cmn-jmeter Show documentation
Show all versions of jmeter-plugins-cmn-jmeter Show documentation
Various utility classes to ease development of plugins
package kg.apc.charting.elements;
import kg.apc.charting.AbstractGraphPanelChartElement;
/** {@inheritDoc} */
public class GraphPanelChartSimpleElement
extends AbstractGraphPanelChartElement
{
double value = 0;
/**
*
* @param yVal
*/
public GraphPanelChartSimpleElement(double yVal)
{
add(yVal);
}
GraphPanelChartSimpleElement()
{
}
/**
*
* @param yVal
*/
public void add(double yVal)
{
value = yVal;
}
/** {@inheritDoc} */
public double getValue()
{
return value;
}
}