List of usage examples for android.widget ListAdapter getClass
@HotSpotIntrinsicCandidate public final native Class<?> getClass();
From source file:com.sababado.support.v4.app.SearchableSupportListFragment.java
@Override public void setListAdapter(ListAdapter adapter) { if (!(adapter instanceof Filterable)) throw new RuntimeException("The adapter " + adapter.getClass() + " is not of Filterable type."); if (adapter instanceof FilterableBaseAdapter) mFilterableAdapter = (FilterableBaseAdapter) adapter; super.setListAdapter(adapter); }