All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.widget.Filter Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag that was used to checkout the source from the Git repos was android-2.1_r2.

There is a newer version: 4.1.1.4
Show newest version
package android.widget;
public abstract class Filter
{
protected static class FilterResults
{
public  FilterResults() { throw new RuntimeException("Stub!"); }
public java.lang.Object values;
public int count;
}
public static interface FilterListener
{
public abstract  void onFilterComplete(int count);
}
public  Filter() { throw new RuntimeException("Stub!"); }
public final  void filter(java.lang.CharSequence constraint) { throw new RuntimeException("Stub!"); }
public final  void filter(java.lang.CharSequence constraint, android.widget.Filter.FilterListener listener) { throw new RuntimeException("Stub!"); }
protected abstract  android.widget.Filter.FilterResults performFiltering(java.lang.CharSequence constraint);
protected abstract  void publishResults(java.lang.CharSequence constraint, android.widget.Filter.FilterResults results);
public  java.lang.CharSequence convertResultToString(java.lang.Object resultValue) { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy