Back to project page android-bluetooth-serial.
The source code is released under:
GNU General Public License
If you think the Android project android-bluetooth-serial 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 doctor.bt; //from w w w. j av a 2 s. c o m public class BTRemoteDeviceInfo { private String mName = null; private String mMacAddr = null; private Boolean mConnStatus = false; public BTRemoteDeviceInfo(String name, String macAddr) { this.mName = name; this.mMacAddr = macAddr; } public Boolean getmConnStatus() { return mConnStatus; } public void setmConnStatus(Boolean mConnStatus) { this.mConnStatus = mConnStatus; } public String getMacAddr() { return mMacAddr; } public void setMacAddr(String macAddr) { this.mMacAddr = macAddr; } public String getName() { return mName; } public void setName(String name) { this.mName = name; } }