android.text.InputFilter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.text;
public interface InputFilter
{
public static class AllCaps
implements android.text.InputFilter
{
public AllCaps() { throw new RuntimeException("Stub!"); }
public java.lang.CharSequence filter(java.lang.CharSequence source, int start, int end, android.text.Spanned dest, int dstart, int dend) { throw new RuntimeException("Stub!"); }
}
public static class LengthFilter
implements android.text.InputFilter
{
public LengthFilter(int max) { throw new RuntimeException("Stub!"); }
public java.lang.CharSequence filter(java.lang.CharSequence source, int start, int end, android.text.Spanned dest, int dstart, int dend) { throw new RuntimeException("Stub!"); }
}
public abstract java.lang.CharSequence filter(java.lang.CharSequence source, int start, int end, android.text.Spanned dest, int dstart, int dend);
}