Project: diva-beta2_apk

Source code
package android.support.v4.view;

import android.view.View;

public interface ViewPropertyAnimatorListener {
    void onAnimationCancel(View view);

    void onAnimationEnd(View view);

    void onAnimationStart(View view);
}