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; /*from ww w . j av a2 s . c om*/ public class DiscoveryServiceEvent { public static final int GATT_DISCOVERING = 1; private final int mStatus; public DiscoveryServiceEvent(int i) { mStatus = i; } @Override public String toString() { return "DiscoveryServiceEvent{" + "mStatus=" + mStatus + '}'; } }