• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.server.status;
2 
3 import android.app.PendingIntent;
4 import android.widget.RemoteViews;
5 
6 public class NotificationData {
7     public String pkg;
8     public String tag;
9     public int id;
10     public CharSequence tickerText;
11 
12     public long when;
13     public boolean ongoingEvent;
14     public boolean clearable;
15 
16     public RemoteViews contentView;
17     public PendingIntent contentIntent;
18 
19     public PendingIntent deleteIntent;
20 
toString()21     public String toString() {
22         return "NotificationData(package=" + pkg + " tickerText=" + tickerText
23                 + " ongoingEvent=" + ongoingEvent + " contentIntent=" + contentIntent
24                 + " deleteIntent=" + deleteIntent
25                 + " clearable=" + clearable
26                 + " contentView=" + contentView + " when=" + when + ")";
27     }
28 }
29