Back to project page slidingdebugmenu.
The source code is released under:
Apache License
If you think the Android project slidingdebugmenu 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 co.lemonlabs.android.slidingdebugmenu.modules.events; //from w w w. ja v a 2 s. co m import android.net.NetworkInfo; import static co.lemonlabs.android.slidingdebugmenu.controllers.NetworkController.BluetoothState; /** * Created by balysv on 10/01/14. * www.lemonlabs.co */ public class NetworkChangeEvent { public final NetworkInfo.State wifiState; public final NetworkInfo.State mobileState; public final BluetoothState bluetoothState; public NetworkChangeEvent(NetworkInfo.State wifiState, NetworkInfo.State mobileState, BluetoothState bluetoothState) { this.wifiState = wifiState; this.mobileState = mobileState; this.bluetoothState = bluetoothState; } }