blob: 5ee83734915db968ae7332c7a2610fa01ed2cab6 [file] [log] [blame]
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);
}