mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
22 lines
733 B
Java
Generated
22 lines
733 B
Java
Generated
// Generated automatically from android.view.TouchDelegate for testing purposes
|
|
|
|
package android.view;
|
|
|
|
import android.graphics.Rect;
|
|
import android.view.MotionEvent;
|
|
import android.view.View;
|
|
import android.view.accessibility.AccessibilityNodeInfo;
|
|
|
|
public class TouchDelegate
|
|
{
|
|
protected TouchDelegate() {}
|
|
public AccessibilityNodeInfo.TouchDelegateInfo getTouchDelegateInfo(){ return null; }
|
|
public TouchDelegate(Rect p0, View p1){}
|
|
public boolean onTouchEvent(MotionEvent p0){ return false; }
|
|
public boolean onTouchExplorationHoverEvent(MotionEvent p0){ return false; }
|
|
public static int ABOVE = 0;
|
|
public static int BELOW = 0;
|
|
public static int TO_LEFT = 0;
|
|
public static int TO_RIGHT = 0;
|
|
}
|