
nl.pvanassen.geckoboard.api.json.list.Title 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;
/**
* Title item for list widget
*
* @author Paul van Assen
*/
public class Title {
private String text;
private Boolean highlight;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public boolean isHighlight() {
return highlight;
}
public void setHighlight(Boolean highlight) {
this.highlight = highlight;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy