mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
430 B
Java
Generated
15 lines
430 B
Java
Generated
// Generated automatically from android.content.ServiceConnection for testing purposes
|
|
|
|
package android.content;
|
|
|
|
import android.content.ComponentName;
|
|
import android.os.IBinder;
|
|
|
|
public interface ServiceConnection
|
|
{
|
|
default void onBindingDied(ComponentName p0){}
|
|
default void onNullBinding(ComponentName p0){}
|
|
void onServiceConnected(ComponentName p0, IBinder p1);
|
|
void onServiceDisconnected(ComponentName p0);
|
|
}
|