package org.jzy3d.colors;
/** {@link ISingleColorable} objects have a single plain color and a must define a setter for it.*/
publicinterface ISingleColorable {
/** Set the color.
* @param color the color
*/
publicvoid setColor(Color color);
/** Get the color.
* @return color the color.
*/
public Color getColor();
}