Back to project page Animated.
The source code is released under:
Apache License
If you think the Android project Animated 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 org.apps.awarner.animated; // www. ja va 2 s.co m /** * Created by andy on 7/7/13. */ public class XYHolder { private float mX; private float mY; public XYHolder(float x, float y) { mX = x; mY = y; } public float getX() { return mX; } public void setX(float x) { mX = x; } public float getY() { return mY; } public void setY(float y) { mY = y; } }