kg.apc.charting.AbstractGraphPanelChartElement 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;
import java.io.Serializable;
public abstract class AbstractGraphPanelChartElement implements Serializable {
public abstract double getValue();
public abstract void add(double val);
public boolean isPointRepresentative(int limit) {
return true;
}
}