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

nl.pvanassen.geckoboard.api.json.bulletgraph.Axis Maven / Gradle / Ivy

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

import java.util.LinkedList;
import java.util.List;

import com.google.gson.annotations.SerializedName;

/**
 * Axis class for bullet graph
 *
 * @author Paul van Assen
 */
public class Axis {

    @SerializedName("point")
    private final List points = new LinkedList();

    public List getPoints() {
        return points;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy