Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/content/ClipDescription.java
Chris Smowton 1dffbcd0bd Fix tests disrupted by re-modelling and stubbing Android 9:
* 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)
2021-10-12 12:35:05 +01:00

32 lines
1.3 KiB
Java
Generated

// Generated automatically from android.content.ClipDescription for testing purposes
package android.content;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.PersistableBundle;
public class ClipDescription implements Parcelable
{
protected ClipDescription() {}
public CharSequence getLabel(){ return null; }
public ClipDescription(CharSequence p0, String[] p1){}
public ClipDescription(ClipDescription p0){}
public PersistableBundle getExtras(){ return null; }
public String getMimeType(int p0){ return null; }
public String toString(){ return null; }
public String[] filterMimeTypes(String p0){ return null; }
public boolean hasMimeType(String p0){ return false; }
public int describeContents(){ return 0; }
public int getMimeTypeCount(){ return 0; }
public long getTimestamp(){ return 0; }
public static Parcelable.Creator<ClipDescription> CREATOR = null;
public static String MIMETYPE_TEXT_HTML = null;
public static String MIMETYPE_TEXT_INTENT = null;
public static String MIMETYPE_TEXT_PLAIN = null;
public static String MIMETYPE_TEXT_URILIST = null;
public static boolean compareMimeTypes(String p0, String p1){ return false; }
public void setExtras(PersistableBundle p0){}
public void writeToParcel(Parcel p0, int p1){}
}