All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.pvanassen.geckoboard.api.json.list.Title Maven / Gradle / Ivy

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