Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/text/TextWatcher.java
2022-04-26 13:34:16 +02:00

14 lines
391 B
Java
Generated

// Generated automatically from android.text.TextWatcher for testing purposes
package android.text;
import android.text.Editable;
import android.text.NoCopySpan;
public interface TextWatcher extends NoCopySpan
{
void afterTextChanged(Editable p0);
void beforeTextChanged(CharSequence p0, int p1, int p2, int p3);
void onTextChanged(CharSequence p0, int p1, int p2, int p3);
}