37 lines
962 B
Java
37 lines
962 B
Java
|
package o;
|
||
|
|
||
|
import android.text.Editable;
|
||
|
import android.text.TextWatcher;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public final class fKS {
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public interface RVV {
|
||
|
void e(String str);
|
||
|
}
|
||
|
|
||
|
/* renamed from: o.fKS$2, reason: invalid class name */
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class AnonymousClass2 implements TextWatcher {
|
||
|
private RVV c;
|
||
|
|
||
|
@Override // android.text.TextWatcher
|
||
|
public final void beforeTextChanged(CharSequence charSequence, int i, int i2, int i3) {
|
||
|
}
|
||
|
|
||
|
@Override // android.text.TextWatcher
|
||
|
public final void onTextChanged(CharSequence charSequence, int i, int i2, int i3) {
|
||
|
}
|
||
|
|
||
|
public AnonymousClass2(RVV rvv) {
|
||
|
this.c = rvv;
|
||
|
}
|
||
|
|
||
|
@Override // android.text.TextWatcher
|
||
|
public final void afterTextChanged(Editable editable) {
|
||
|
this.c.e(editable.toString());
|
||
|
}
|
||
|
}
|
||
|
}
|