mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
22 lines
684 B
Java
Generated
22 lines
684 B
Java
Generated
// Generated automatically from android.accounts.Account for testing purposes
|
|
|
|
package android.accounts;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class Account implements Parcelable
|
|
{
|
|
protected Account() {}
|
|
public Account(Parcel p0){}
|
|
public Account(String p0, String p1){}
|
|
public String toString(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public final String name = null;
|
|
public final String type = null;
|
|
public int describeContents(){ return 0; }
|
|
public int hashCode(){ return 0; }
|
|
public static Parcelable.Creator<Account> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|