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

nl.pvanassen.geckoboard.api.json.common.TextValuePrefixItem Maven / Gradle / Ivy

The newest version!
package nl.pvanassen.geckoboard.api.json.common;

/**
 * Text value prefix item for generic use
 * 
 * @author Paul van Assen
 *
 */
public class TextValuePrefixItem extends TextValueItem {

    private final String prefix;

    public TextValuePrefixItem(String text, int value, String prefix) {
        super(text, value);
        this.prefix = prefix;
    }

    public String getPrefix() {
        return prefix;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy