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)
19 lines
616 B
Java
Generated
19 lines
616 B
Java
Generated
// Generated automatically from android.content.pm.ChangedPackages for testing purposes
|
|
|
|
package android.content.pm;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import java.util.List;
|
|
|
|
public class ChangedPackages implements Parcelable
|
|
{
|
|
protected ChangedPackages() {}
|
|
public ChangedPackages(int p0, List<String> p1){}
|
|
public List<String> getPackageNames(){ return null; }
|
|
public int describeContents(){ return 0; }
|
|
public int getSequenceNumber(){ return 0; }
|
|
public static Parcelable.Creator<ChangedPackages> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|