mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +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)
28 lines
1.0 KiB
Java
Generated
28 lines
1.0 KiB
Java
Generated
// Generated automatically from android.content.pm.InstrumentationInfo for testing purposes
|
|
|
|
package android.content.pm;
|
|
|
|
import android.content.pm.PackageItemInfo;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class InstrumentationInfo extends PackageItemInfo implements Parcelable
|
|
{
|
|
public InstrumentationInfo(){}
|
|
public InstrumentationInfo(InstrumentationInfo p0){}
|
|
public String dataDir = null;
|
|
public String publicSourceDir = null;
|
|
public String sourceDir = null;
|
|
public String targetPackage = null;
|
|
public String targetProcesses = null;
|
|
public String toString(){ return null; }
|
|
public String[] splitNames = null;
|
|
public String[] splitPublicSourceDirs = null;
|
|
public String[] splitSourceDirs = null;
|
|
public boolean functionalTest = false;
|
|
public boolean handleProfiling = false;
|
|
public int describeContents(){ return 0; }
|
|
public static Parcelable.Creator<InstrumentationInfo> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|