mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
38 lines
1.6 KiB
Java
Generated
38 lines
1.6 KiB
Java
Generated
// Generated automatically from android.service.notification.StatusBarNotification for testing purposes
|
|
|
|
package android.service.notification;
|
|
|
|
import android.app.Notification;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import android.os.UserHandle;
|
|
|
|
public class StatusBarNotification implements Parcelable
|
|
{
|
|
protected StatusBarNotification() {}
|
|
public Notification getNotification(){ return null; }
|
|
public StatusBarNotification clone(){ return null; }
|
|
public StatusBarNotification(Parcel p0){}
|
|
public StatusBarNotification(String p0, String p1, int p2, String p3, int p4, int p5, int p6, Notification p7, UserHandle p8, long p9){}
|
|
public String getGroupKey(){ return null; }
|
|
public String getKey(){ return null; }
|
|
public String getOpPkg(){ return null; }
|
|
public String getOverrideGroupKey(){ return null; }
|
|
public String getPackageName(){ return null; }
|
|
public String getTag(){ return null; }
|
|
public String toString(){ return null; }
|
|
public UserHandle getUser(){ return null; }
|
|
public boolean isAppGroup(){ return false; }
|
|
public boolean isClearable(){ return false; }
|
|
public boolean isGroup(){ return false; }
|
|
public boolean isOngoing(){ return false; }
|
|
public int describeContents(){ return 0; }
|
|
public int getId(){ return 0; }
|
|
public int getUid(){ return 0; }
|
|
public int getUserId(){ return 0; }
|
|
public long getPostTime(){ return 0; }
|
|
public static Parcelable.Creator<StatusBarNotification> CREATOR = null;
|
|
public void setOverrideGroupKey(String p0){}
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|