summaryrefslogtreecommitdiffstats
path: root/src/com/android/calendar/alerts/AlarmManagerInterface.java
blob: 5ee83734915db968ae7332c7a2610fa01ed2cab6 (plain)
1
2
3
4
5
6
7
8
9
10
package com.android.calendar.alerts;

import android.app.PendingIntent;

/**
 * AlarmManager abstracted to an interface for testability.
 */
public interface AlarmManagerInterface {
    public void set(int type, long triggerAtMillis, PendingIntent operation);
}