mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +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)
24 lines
798 B
Java
Generated
24 lines
798 B
Java
Generated
// Generated automatically from android.content.PeriodicSync for testing purposes
|
|
|
|
package android.content;
|
|
|
|
import android.accounts.Account;
|
|
import android.os.Bundle;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class PeriodicSync implements Parcelable
|
|
{
|
|
protected PeriodicSync() {}
|
|
public PeriodicSync(Account p0, String p1, Bundle p2, long p3){}
|
|
public String toString(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public final Account account = null;
|
|
public final Bundle extras = null;
|
|
public final String authority = null;
|
|
public final long period = 0;
|
|
public int describeContents(){ return 0; }
|
|
public static Parcelable.Creator<PeriodicSync> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|