VelocityTrackerCompat.java
1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package android.support.v4.view;
import android.os.Build.VERSION;
import android.view.VelocityTracker;
public final class VelocityTrackerCompat
{
static final c a = new a();
static
{
if (Build.VERSION.SDK_INT >= 11)
{
a = new b();
return;
}
}
public static float getXVelocity(VelocityTracker paramVelocityTracker, int paramInt)
{
return a.a(paramVelocityTracker, paramInt);
}
public static float getYVelocity(VelocityTracker paramVelocityTracker, int paramInt)
{
return a.b(paramVelocityTracker, paramInt);
}
static final class a
implements VelocityTrackerCompat.c
{
public final float a(VelocityTracker paramVelocityTracker, int paramInt)
{
return paramVelocityTracker.getXVelocity();
}
public final float b(VelocityTracker paramVelocityTracker, int paramInt)
{
return paramVelocityTracker.getYVelocity();
}
}
static final class b
implements VelocityTrackerCompat.c
{
public final float a(VelocityTracker paramVelocityTracker, int paramInt)
{
return paramVelocityTracker.getXVelocity(paramInt);
}
public final float b(VelocityTracker paramVelocityTracker, int paramInt)
{
return paramVelocityTracker.getYVelocity(paramInt);
}
}
static abstract interface c
{
public abstract float a(VelocityTracker paramVelocityTracker, int paramInt);
public abstract float b(VelocityTracker paramVelocityTracker, int paramInt);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v4/view/VelocityTrackerCompat.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/