Back to project page task-timer-legacy.
The source code is released under:
GNU General Public License
If you think the Android project task-timer-legacy listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.gawdl3y.android.actionablelistview; /* w w w . j a va2s .co m*/ import android.support.v4.app.ListFragment; import android.widget.*; public class ActionableListFragment extends ListFragment { @Override public void setListAdapter(ListAdapter adapter) { if(!(adapter instanceof ActionableAdapter)) throw new IllegalArgumentException("Adapter must be instance of ActionableAdapter"); super.setListAdapter(adapter); } }