All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.microlog.midp.bluetooth.BluetoothRemoteDevice Maven / Gradle / Ivy

There is a newer version: 2.3.5
Show newest version
package net.sf.microlog.midp.bluetooth;

import javax.bluetooth.RemoteDevice;

/**
 * Contain the Bluetooth address of the server. This is used in the service
 * search.
 * 
 * @author Jarle Hansen ([email protected])
 * 
 */
public class BluetoothRemoteDevice extends RemoteDevice {
	private BluetoothRemoteDevice(final String bluetoothAddress) {
		super(bluetoothAddress);
	}

	public static BluetoothRemoteDevice setAddress(final String bluetoothAddress) {
		return new BluetoothRemoteDevice(bluetoothAddress);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy