mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
31 lines
1.1 KiB
Java
Generated
31 lines
1.1 KiB
Java
Generated
// Generated automatically from android.view.DragEvent for testing purposes
|
|
|
|
package android.view;
|
|
|
|
import android.content.ClipData;
|
|
import android.content.ClipDescription;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class DragEvent implements Parcelable
|
|
{
|
|
protected DragEvent() {}
|
|
public ClipData getClipData(){ return null; }
|
|
public ClipDescription getClipDescription(){ return null; }
|
|
public Object getLocalState(){ return null; }
|
|
public String toString(){ return null; }
|
|
public boolean getResult(){ return false; }
|
|
public float getX(){ return 0; }
|
|
public float getY(){ return 0; }
|
|
public int describeContents(){ return 0; }
|
|
public int getAction(){ return 0; }
|
|
public static Parcelable.Creator<DragEvent> CREATOR = null;
|
|
public static int ACTION_DRAG_ENDED = 0;
|
|
public static int ACTION_DRAG_ENTERED = 0;
|
|
public static int ACTION_DRAG_EXITED = 0;
|
|
public static int ACTION_DRAG_LOCATION = 0;
|
|
public static int ACTION_DRAG_STARTED = 0;
|
|
public static int ACTION_DROP = 0;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|