mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
36 lines
1.4 KiB
Java
Generated
36 lines
1.4 KiB
Java
Generated
// Generated automatically from android.media.MediaDescription for testing purposes
|
|
|
|
package android.media;
|
|
|
|
import android.graphics.Bitmap;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class MediaDescription implements Parcelable
|
|
{
|
|
protected MediaDescription() {}
|
|
public Bitmap getIconBitmap(){ return null; }
|
|
public Bundle getExtras(){ return null; }
|
|
public CharSequence getDescription(){ return null; }
|
|
public CharSequence getSubtitle(){ return null; }
|
|
public CharSequence getTitle(){ return null; }
|
|
public String getMediaId(){ return null; }
|
|
public String toString(){ return null; }
|
|
public Uri getIconUri(){ return null; }
|
|
public Uri getMediaUri(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public int describeContents(){ return 0; }
|
|
public static Parcelable.Creator<MediaDescription> CREATOR = null;
|
|
public static String EXTRA_BT_FOLDER_TYPE = null;
|
|
public static long BT_FOLDER_TYPE_ALBUMS = 0;
|
|
public static long BT_FOLDER_TYPE_ARTISTS = 0;
|
|
public static long BT_FOLDER_TYPE_GENRES = 0;
|
|
public static long BT_FOLDER_TYPE_MIXED = 0;
|
|
public static long BT_FOLDER_TYPE_PLAYLISTS = 0;
|
|
public static long BT_FOLDER_TYPE_TITLES = 0;
|
|
public static long BT_FOLDER_TYPE_YEARS = 0;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|