Methods Summary |
---|
public final void | clientSelected(com.android.ddmlib.Client selectedClient)Sent when a new client is selected.
if (selectedClient != mCurrentClient) {
mCurrentClient = selectedClient;
clientSelected();
}
|
public abstract void | clientSelected()Sent when a new client is selected. The new client can be accessed
with {@link #getCurrentClient()}.
|
public final void | deviceSelected(com.android.ddmlib.Device selectedDevice)Sent when a new device is selected.
if (selectedDevice != mCurrentDevice) {
mCurrentDevice = selectedDevice;
deviceSelected();
}
|
public abstract void | deviceSelected()Sent when a new device is selected. The new device can be accessed
with {@link #getCurrentDevice()}.
|
protected final com.android.ddmlib.Client | getCurrentClient()Returns the current {@link Client}.
return mCurrentClient;
|
protected final com.android.ddmlib.Device | getCurrentDevice()Returns the current {@link Device}.
return mCurrentDevice;
|