Back to project page BluetoothGlass.
The source code is released under:
GNU General Public License
If you think the Android project BluetoothGlass 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.vicmns.bluetoothglass.client.models; /*ww w .ja va2 s . c o m*/ /** * Created by Victor Cervantes on 3/14/14. */ public class BluetoothDeviceModel { String deviceName; String deviceMACAddress; public BluetoothDeviceModel(String deviceName, String deviceMACAddress) { this.deviceName = deviceName; this.deviceMACAddress = deviceMACAddress; } public String getDeviceName() { return deviceName; } public String getDeviceMACAddress() { return deviceMACAddress; } }