NestedScrollingParentHelper.java
746 Bytes
package android.support.v4.view;
import android.view.View;
import android.view.ViewGroup;
public class NestedScrollingParentHelper
{
private final ViewGroup a;
private int b;
public NestedScrollingParentHelper(ViewGroup paramViewGroup)
{
this.a = paramViewGroup;
}
public int getNestedScrollAxes()
{
return this.b;
}
public void onNestedScrollAccepted(View paramView1, View paramView2, int paramInt)
{
this.b = paramInt;
}
public void onStopNestedScroll(View paramView)
{
this.b = 0;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v4/view/NestedScrollingParentHelper.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/