package com.safeluck.floatwindow;
|
|
import com.safeluck.floatwindow.ResponseVO;
|
|
/**
|
* Demonstrates some basic types that you can use as parameters
|
* and return values in AIDL.
|
*/
|
interface IMyCallback {
|
/**
|
* Demonstrates some basic types that you can use as parameters
|
* and return values in AIDL.
|
*/
|
void onResult(in ResponseVO re);
|
}
|