• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 {
set(int type, long triggerAtMillis, PendingIntent operation)9     public void set(int type, long triggerAtMillis, PendingIntent operation);
10 }
11