
nl.pvanassen.geckoboard.api.json.common.TextStrValuePrefixItem 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.common;
/**
* A text-string value prefix type for generic use
*
* @author Paul van Assen
*/
public class TextStrValuePrefixItem extends TextStrValueItem {
private final String prefix;
public TextStrValuePrefixItem(String text, String value, String prefix) {
super(text, value);
this.prefix = prefix;
}
public String getPrefix() {
return prefix;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy