
nl.pvanassen.geckoboard.api.json.text.TextItem 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.text;
/**
* This is the type for the text widget http://www.geckoboard.com/developers/custom-widgets/widget-types/text/
*
* @author Paul van Assen
*/
public class TextItem {
private final String text;
private final TextItemType type;
public TextItem(String text, TextItemType type) {
super();
this.text = text;
this.type = type;
}
public String getText() {
return text;
}
public TextItemType getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy