blob: 9de0889a1da9d23e4a89102c99561afe9aa839bf [file] [log] [blame]
package com.android.tests.basic;
import com.android.tests.basic.Foo;
// Declare any non-default types here with import statements
/** Example service interface */
interface IService {
/** Request the process ID of this service, to do evil things with it. */
int getPid();
/** 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);
Foo getFoo();
}