Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package com.ubt.jimu.base.impl;
import android.text.Editable;
import android.text.TextWatcher;
/* loaded from: classes.dex */
public abstract class TextWatcherImpl implements TextWatcher {
@Override // android.text.TextWatcher
public void afterTextChanged(Editable editable) {
textChanged(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) {
if (i == 0 && i2 == 0 && i3 == 0) {
return;
}
textChanged(charSequence);
}
public void textChanged(Editable editable) {
}
public void textChanged(CharSequence charSequence) {
}
}