
nl.pvanassen.geckoboard.api.json.list.Label Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geckoboard-api Show documentation
Show all versions of geckoboard-api Show documentation
A Java API to generate highchart json on the server side.
The newest version!
package nl.pvanassen.geckoboard.api.json.list;
import java.awt.Color;
/**
* Label type for the list widget http://www.geckoboard.com/developers/custom-widgets/widget-types/list
*
* @author Paul van Assen
*/
public class Label {
private String name;
private Color color;
public String getName() {
return name;
}
void setName(String name) {
this.name = name;
}
public Color getColor() {
return color;
}
void setColor(Color color) {
this.color = color;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy