Back to project page how-many-squirrels-android.
The source code is released under:
GNU General Public License
If you think the Android project how-many-squirrels-android 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.howmuchof.squirrels.common.graphview; //ww w . j a v a 2 s. c o m /* * How many squirrels: tool for young naturalist * * This application is created within the internship * in the Education Department of Tomsksoft, http://tomsksoft.com * Idea and leading: Sergei Borisov * * This software is licensed under a GPL v3 * http://www.gnu.org/licenses/gpl.txt * * Created by Viacheslav Voronov on 5/1/2014 */ public class GraphLine { int topX; int topY; int botX; int botY; public void setGraphBarValues(int topX, int topY, int botX, int botY){ this.topX = topX; this.topY = topY; this.botX = botX; this.botY = botY; } public int getBarBotX() { return botX; } public int getBarBotY() { return botY; } public int getBarTopX() { return topX; } public int getBarTopY() { return topY; } }