• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.calendar.alerts;
2 
3 import com.android.calendar.alerts.AlertService.NotificationWrapper;
4 
5 public interface NotificationMgr {
cancel(int id)6     public void cancel(int id);
cancel(String tag, int id)7     public void cancel(String tag, int id);
cancelAll()8     public void cancelAll();
notify(int id, NotificationWrapper notification)9     public void notify(int id, NotificationWrapper notification);
notify(String tag, int id, NotificationWrapper notification)10     public void notify(String tag, int id, NotificationWrapper notification);
11 }
12