Back to project page slider.
The source code is released under:
Apache License
If you think the Android project slider listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Created on 26.10.2006 by leck//w w w. java 2 s . c o m * */ package de.devisnik.sliding.impl; import de.devisnik.sliding.IMove; public class Move implements IMove { private final int x; private final int y; public Move(int moveX, int moveY) { x = moveX; y = moveY; } public int getX() { return x; } public int getY() { return y; } }