package cx.ath.skyflyer.chart; /** * * @author lego */ public class DataPoint { public DataPoint(double xvalue, double yvalue) { this.x = xvalue; this.y = yvalue; } public final double x; public final double y; }