15 lines
415 B
Plaintext
15 lines
415 B
Plaintext
// IAlarmAidlInterface.aidl
|
|
package com.alarmclock.uiui;
|
|
|
|
// Declare any non-default types here with import statements
|
|
|
|
interface IAlarmAidlInterface {
|
|
/**
|
|
* Demonstrates some basic types that you can use as parameters
|
|
* and return values in AIDL.
|
|
*/
|
|
void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
|
|
double aDouble, String aString);
|
|
String getAlarm();
|
|
}
|