Back to project page miner.
The source code is released under:
Apache License
If you think the Android project miner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.kolomiyets.miner.bt.notification; //ww w . j a v a 2s . c o m import android.bluetooth.BluetoothClass; import android.bluetooth.BluetoothDevice; public class BtNotificationDiscoveryDevice extends BtNotificationDiscovery { public final BluetoothDevice device; public final BluetoothClass clas; public final String name; public final Short rssi; public BtNotificationDiscoveryDevice(BluetoothDevice device, BluetoothClass clas, String name, Short rssi) { this.device = device; this.clas = clas; this.name = name; this.rssi = rssi; } }