Home | History | Annotate | Download | only in alerts
      1 package com.android.calendar.alerts;
      2 
      3 import com.android.calendar.alerts.AlertService.NotificationWrapper;
      4 
      5 public interface NotificationMgr {
      6     public void cancel(int id);
      7     public void cancel(String tag, int id);
      8     public void cancelAll();
      9     public void notify(int id, NotificationWrapper notification);
     10     public void notify(String tag, int id, NotificationWrapper notification);
     11 }
     12