package android.view;
public final class VelocityTracker
{
VelocityTracker() { throw new RuntimeException("Stub!"); }
public static android.view.VelocityTracker obtain() { throw new RuntimeException("Stub!"); }
public void recycle() { throw new RuntimeException("Stub!"); }
protected void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
public void clear() { throw new RuntimeException("Stub!"); }
public void addMovement(android.view.MotionEvent event) { throw new RuntimeException("Stub!"); }
public void computeCurrentVelocity(int units) { throw new RuntimeException("Stub!"); }
public void computeCurrentVelocity(int units, float maxVelocity) { throw new RuntimeException("Stub!"); }
public float getXVelocity() { throw new RuntimeException("Stub!"); }
public float getYVelocity() { throw new RuntimeException("Stub!"); }
public float getXVelocity(int id) { throw new RuntimeException("Stub!"); }
public float getYVelocity(int id) { throw new RuntimeException("Stub!"); }
}
|