Back to project page BleAdapter.
The source code is released under:
Apache License
If you think the Android project BleAdapter 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.indy.labs.android.BleEventAdapter.events; // w w w .j a v a 2 s.c o m public class ScanningEvent { private Boolean mScanning; public ScanningEvent(Boolean scanning) { this.mScanning = scanning; } public Boolean getMScanning() { return mScanning; } @Override public String toString() { return "Scanning Event : " + mScanning; } }