kg.apc.charting.ColorsDispatcher 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.awt.Color;
import java.io.Serializable;
/**
* Interface for ColorsDispatcher to providing custom color palettes
*/
public interface ColorsDispatcher extends Serializable {
public void reset();
public Color getNextColor();
}