Java tutorial
//package com.java2s; import android.view.animation.OvershootInterpolator; public class Main { public static OvershootInterpolator getOvershootInterpolator() { return new OvershootInterpolator(); } public static OvershootInterpolator getOvershootInterpolator(float tension) { return new OvershootInterpolator(tension); } }