SLAM/mobile/src/main/java/de/vanitasvitae/slam/AfterTextChangedListener.java

20 lines
547 B
Java
Raw Normal View History

2018-02-01 08:24:08 +01:00
package de.vanitasvitae.slam;
import android.text.Editable;
import android.text.TextWatcher;
/**
* Abstract TextWatcher, that has method stubs for all methods except {@link TextWatcher#afterTextChanged(Editable)}.
*/
public abstract class AfterTextChangedListener implements TextWatcher {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// Do nothing
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// Do nothing
}
}