Back to project page FallApp.
The source code is released under:
MIT License
If you think the Android project FallApp 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 ie.lc.fallApp; /*from www. j av a 2s . com*/ import android.text.*; public abstract class TextWatcherAdapter implements TextWatcher { public void onTextChanged ( CharSequence s, int start, int before, int count ) {} public void beforeTextChanged( CharSequence s, int start, int count, int after ) {} public void afterTextChanged ( Editable s ) {} }