mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
* Account for changed dataflow graph shape using external flow * Account for BaseBundle only existing as of Android 5 * Properly implement Parcelable, which we previously got away with due to a partial stub * Restore an Android 11 function that had been added to the Android 9 Context class (I won't get into enforcing the difference in this PR)
42 lines
1.7 KiB
Java
Generated
42 lines
1.7 KiB
Java
Generated
// Generated automatically from android.content.IntentSender for testing purposes
|
|
|
|
package android.content;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.os.Handler;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import android.os.UserHandle;
|
|
import android.util.AndroidException;
|
|
|
|
public class IntentSender implements Parcelable
|
|
{
|
|
protected IntentSender() {}
|
|
public String getCreatorPackage(){ return null; }
|
|
public String getTargetPackage(){ return null; }
|
|
public String toString(){ return null; }
|
|
public UserHandle getCreatorUserHandle(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public int describeContents(){ return 0; }
|
|
public int getCreatorUid(){ return 0; }
|
|
public int hashCode(){ return 0; }
|
|
public static IntentSender readIntentSenderOrNullFromParcel(Parcel p0){ return null; }
|
|
public static Parcelable.Creator<IntentSender> CREATOR = null;
|
|
public static void writeIntentSenderOrNullToParcel(IntentSender p0, Parcel p1){}
|
|
public void sendIntent(Context p0, int p1, Intent p2, IntentSender.OnFinished p3, Handler p4){}
|
|
public void sendIntent(Context p0, int p1, Intent p2, IntentSender.OnFinished p3, Handler p4, String p5){}
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
static public class SendIntentException extends AndroidException
|
|
{
|
|
public SendIntentException(){}
|
|
public SendIntentException(Exception p0){}
|
|
public SendIntentException(String p0){}
|
|
}
|
|
static public interface OnFinished
|
|
{
|
|
void onSendFinished(IntentSender p0, Intent p1, int p2, String p3, Bundle p4);
|
|
}
|
|
}
|