All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.text.TextWatcherAdapter Maven / Gradle / Ivy

package android.text;

public class TextWatcherAdapter implements TextWatcher {

	public TextWatcherAdapter() {
		// Default const.
	}

	@Override
	public void beforeTextChanged(CharSequence s, int start, int count, int after) {
		/*
		 * Override me
		 */
	}

	@Override
	public void onTextChanged(CharSequence s, int start, int before, int count) {
		/*
		 * Override me
		 */
	}

	@Override
	public void afterTextChanged(Editable s) {
		/*
		 * Override me
		 */
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy