discord-jadx/app/src/main/java/androidx/core/widget/TextViewKt$doOnTextChanged$...

27 lines
956 B
Java

package androidx.core.widget;
import android.text.Editable;
import android.text.TextWatcher;
import kotlin.jvm.functions.Function4;
/* compiled from: TextView.kt */
public final class TextViewKt$doOnTextChanged$$inlined$addTextChangedListener$1 implements TextWatcher {
public final /* synthetic */ Function4 $onTextChanged;
public TextViewKt$doOnTextChanged$$inlined$addTextChangedListener$1(Function4 function4) {
this.$onTextChanged = function4;
}
@Override // android.text.TextWatcher
public void afterTextChanged(Editable editable) {
}
@Override // android.text.TextWatcher
public void beforeTextChanged(CharSequence charSequence, int i, int i2, int i3) {
}
@Override // android.text.TextWatcher
public void onTextChanged(CharSequence charSequence, int i, int i2, int i3) {
this.$onTextChanged.invoke(charSequence, Integer.valueOf(i), Integer.valueOf(i2), Integer.valueOf(i3));
}
}