Back to project page temp-tracker.
The source code is released under:
GNU General Public License
If you think the Android project temp-tracker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.prashant.temptracker; /*w ww. j a va 2 s .c o m*/ import com.jjoe64.graphview.GraphViewDataInterface; public class GraphViewData implements GraphViewDataInterface { private long x; private int y; public GraphViewData(long x, int y) { this.x = x; this.y = y; } @Override public double getX() { return this.x; } @Override public double getY() { return this.y; } }