Uses of Class
javax.bluetooth.RemoteDevice

Packages that use RemoteDevice
com.intel.bluetooth   
javax.bluetooth   
lejos.nxt.comm NXT communication classes 
lejos.pc.comm Communication from the PC to the NXT 
 

Uses of RemoteDevice in com.intel.bluetooth
 

Methods in com.intel.bluetooth that return RemoteDevice
 RemoteDevice BluetoothConnectionAccess.getRemoteDevice()
           
 RemoteDevice BluetoothConnectionAccessAdapter.getRemoteDevice()
           
static RemoteDevice RemoteDeviceHelper.implGetRemoteDevice(Connection conn)
          Retrieves the Bluetooth device that is at the other end of the Bluetooth connection.
static RemoteDevice[] RemoteDeviceHelper.implRetrieveDevices(BluetoothStack bluetoothStack, int option)
          Returns an array of Bluetooth devices.
 RemoteDevice[] BluetoothStack.retrieveDevices(int option)
           
 

Methods in com.intel.bluetooth with parameters of type RemoteDevice
static boolean RemoteDeviceHelper.authenticate(RemoteDevice device)
          Attempts to authenticate RemoteDevice.
static boolean RemoteDeviceHelper.authenticate(RemoteDevice device, String passkey)
          Sends an authentication request to a remote Bluetooth device.
 void SelectServiceHandler.deviceDiscovered(RemoteDevice btDevice, DeviceClass cod)
           
static boolean RemoteDeviceHelper.implAuthorize(RemoteDevice device, Connection conn)
          Determines if this RemoteDevice should be allowed to continue to access the local service provided by the Connection.
static boolean RemoteDeviceHelper.implEncrypt(RemoteDevice device, Connection conn, boolean on)
          Attempts to turn encryption on or off for an existing connection.
static String RemoteDeviceHelper.implGetFriendlyName(RemoteDevice device, long address, boolean alwaysAsk)
          Returns the name of the device.
static boolean RemoteDeviceHelper.implIsAuthenticated(RemoteDevice device)
          Determines if this RemoteDevice has been authenticated.
static boolean RemoteDeviceHelper.implIsAuthorized(RemoteDevice device, Connection conn)
          Determines if this RemoteDevice has been authorized.
static boolean RemoteDeviceHelper.implIsEncrypted(RemoteDevice device)
          Determines if data exchanges with this RemoteDevice are currently being encrypted.
static boolean RemoteDeviceHelper.implIsTrustedDevice(RemoteDevice device)
          Determines if this is a trusted device according to the BCC.
static int RemoteDeviceHelper.readRSSI(RemoteDevice device)
          Gets the RSSI (Receive Signal Strength Indicator) value for a remote Bluetooth device.
static void RemoteDeviceHelper.removeAuthentication(RemoteDevice device)
          Removes authentication between local and remote bluetooth devices.
 int BluetoothStack.searchServices(int[] attrSet, UUID[] uuidSet, RemoteDevice device, DiscoveryListener listener)
          called by JSR-82 code Service search
 void BluetoothConnectionAccess.setRemoteDevice(RemoteDevice remoteDevice)
           
 void BluetoothConnectionAccessAdapter.setRemoteDevice(RemoteDevice remoteDevice)
           
 

Uses of RemoteDevice in javax.bluetooth
 

Methods in javax.bluetooth that return RemoteDevice
 RemoteDevice ServiceRecord.getHostDevice()
          Returns the remote Bluetooth device that populated the service record with attribute values.
static RemoteDevice RemoteDevice.getRemoteDevice(Connection conn)
          Retrieves the Bluetooth device that is at the other end of the Bluetooth Serial Port Profile connection, L2CAP connection, or OBEX over RFCOMM connection provided.
 RemoteDevice[] DiscoveryAgent.retrieveDevices(int option)
          Returns an array of Bluetooth devices that have either been found by the local device during previous inquiry requests or been specified as a pre-known device, depending on the argument.
 

Methods in javax.bluetooth with parameters of type RemoteDevice
 void DiscoveryListener.deviceDiscovered(RemoteDevice btDevice, DeviceClass cod)
          Called when a device is found during an inquiry.
 int DiscoveryAgent.searchServices(int[] attrSet, UUID[] uuidSet, RemoteDevice btDev, DiscoveryListener discListener)
          Searches for services on a remote Bluetooth device that have all the UUIDs specified in uuidSet.
 

Uses of RemoteDevice in lejos.nxt.comm
 

Methods in lejos.nxt.comm that return RemoteDevice
static RemoteDevice Bluetooth.getKnownDevice(String fName)
          Gets a Device of the BC4-Chips internal list of known Devices (those who have been paired before) into the BTDevice Object.
 

Methods in lejos.nxt.comm with parameters of type RemoteDevice
static boolean Bluetooth.addDevice(RemoteDevice d)
          Add device to known devices
static BTConnection Bluetooth.connect(RemoteDevice remoteDevice)
          Connects to a remote device.
static boolean Bluetooth.removeDevice(RemoteDevice d)
          Remove device from known devices
 

Uses of RemoteDevice in lejos.pc.comm
 

Methods in lejos.pc.comm with parameters of type RemoteDevice
 void NXTCommBluecove.deviceDiscovered(RemoteDevice btDevice, DeviceClass cod)