mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +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)
25 lines
923 B
Java
Generated
25 lines
923 B
Java
Generated
// Generated automatically from android.content.pm.PermissionGroupInfo for testing purposes
|
|
|
|
package android.content.pm;
|
|
|
|
import android.content.pm.PackageItemInfo;
|
|
import android.content.pm.PackageManager;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class PermissionGroupInfo extends PackageItemInfo implements Parcelable
|
|
{
|
|
public CharSequence loadDescription(PackageManager p0){ return null; }
|
|
public CharSequence nonLocalizedDescription = null;
|
|
public PermissionGroupInfo(){}
|
|
public PermissionGroupInfo(PermissionGroupInfo p0){}
|
|
public String toString(){ return null; }
|
|
public int describeContents(){ return 0; }
|
|
public int descriptionRes = 0;
|
|
public int flags = 0;
|
|
public int priority = 0;
|
|
public static Parcelable.Creator<PermissionGroupInfo> CREATOR = null;
|
|
public static int FLAG_PERSONAL_INFO = 0;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|