Back to project page ExampleChopping.
The source code is released under:
Apache License
If you think the Android project ExampleChopping 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.chopping.example.bus; /*from w w w . j a v a2 s. c o m*/ /** * Event when Wifi status has been changed. */ public final class WifiEvent { /**True, if current wifi-status is ON.*/ private boolean mEnable; /** * Constructor of WifiEvent. * @param _isEnable Current wifi-status. True is ON, false is OFF. */ public WifiEvent(boolean _isEnable) { mEnable = _isEnable; } /**Get current wifi-status. True is ON, false is OFF.*/ public boolean isEnable() { return mEnable; } }