1 package com.android.calendar.alerts; 2 3 import android.app.PendingIntent; 4 5 /** 6 * AlarmManager abstracted to an interface for testability. 7 */ 8 public interface AlarmManagerInterface { 9 public void set(int type, long triggerAtMillis, PendingIntent operation); 10 } 11