Mobile Tools for Java
Release 1.0

org.eclipse.mtj.core.sdk.device
Interface IDeviceRegistryListener


public interface IDeviceRegistryListener

Classes that implement this interface provide methods that deal with the events that are generated when the device registry changes.

Since:
1.0

Method Summary
 void deviceAdded(IDevice device)
          The specified device has been added to the registry.
 void deviceRemoved(IDevice device)
          The specified device has been removed to the registry.
 

Method Detail

deviceAdded

void deviceAdded(IDevice device)
The specified device has been added to the registry.

Sent when the IDeviceRegistry.addDevice(IDevice) is invoked.

Parameters:
device - the device that was added to the registry.

deviceRemoved

void deviceRemoved(IDevice device)
The specified device has been removed to the registry.

Sent when the IDeviceRegistry.removeDevice(IDevice) is invoked.

Parameters:
device - the device that was removed from the registry.

Mobile Tools for Java
Release 1.0