Back to project page AniDroid.
The source code is released under:
GNU Lesser General Public License
If you think the Android project AniDroid 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 net.mediavrog.ani; //w w w.ja v a 2 s . c o m /** * @author maikvlcek * @since 11:09 AM - 7/17/13 */ public interface Animation { // calculate the current values public void calculate(); public void seek(float theValue); public void start(); public void resume(); public void pause(); public boolean isPlaying(); public boolean isPaused(); public boolean isEnded(); public float getSeek(); public float getDuration(); public float getTime(); public Object getTarget(); }