1package com.android.calendar.alerts;
2
3import com.android.calendar.alerts.AlertService.NotificationWrapper;
4
5public 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