mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
23 lines
949 B
Java
Generated
23 lines
949 B
Java
Generated
// Generated automatically from android.os.PersistableBundle for testing purposes
|
|
|
|
package android.os;
|
|
|
|
import java.io.InputStream;
|
|
|
|
public class PersistableBundle extends BaseBundle implements Cloneable, Parcelable
|
|
{
|
|
public Object clone(){ return null; }
|
|
public PersistableBundle deepCopy(){ return null; }
|
|
public PersistableBundle getPersistableBundle(String p0){ return null; }
|
|
public PersistableBundle(){}
|
|
public PersistableBundle(PersistableBundle p0){}
|
|
public PersistableBundle(int p0){}
|
|
public String toString(){ return null; }
|
|
public int describeContents(){ return 0; }
|
|
public static Parcelable.Creator<PersistableBundle> CREATOR = null;
|
|
public static PersistableBundle EMPTY = null;
|
|
public void putPersistableBundle(String p0, PersistableBundle p1){}
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
public static PersistableBundle readFromStream(InputStream inputStream){ return null; }
|
|
}
|