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.
package de.devisnik.sliding.animation; /*from ww w. java 2s .c om*/ public class Animation { private final IShiftable itsShiftable; private final IMovement itsMovement; public Animation(IShiftable shiftable, IMovement transition) { itsShiftable = shiftable; itsMovement = transition; } public boolean hasNext() { return itsMovement.hasNext(); } public void stepNext() { itsShiftable.shift(itsMovement.next()); } public int currentStep() { return itsMovement.goneStepsNumber(); } }