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; //from w w w . j a va2s . com /** * Interface for performing an action * @author Schuyler Cebulskie */ public interface Actionable { /** * Performs an action on something * @param actionType The type of action to perform * @param id The identifier for the item to perform the action on * (could be a position, index, ID, etc.) * @return {@code true} if the associated {@code ActionMode} should be ended, {@code false} if not */ public boolean performAction(int actionType, int id); }