jadb/src/se/vidstige/jadb/DeviceDetectionListener.java

10 lines
177 B
Java
Raw Normal View History

2016-10-23 16:55:31 +02:00
package se.vidstige.jadb;
import java.util.List;
public interface DeviceDetectionListener {
2018-08-06 13:07:10 +02:00
void onDetect(List<JadbDevice> devices);
void onException(Exception e);
2016-10-23 16:55:31 +02:00
}