Files
Xuewang365OSNeutral/app/src/main/aidl/com/alarmclock/uiui/IAlarmAidlInterface.aidl
2021-12-03 17:46:59 +08:00

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();
}