blob: a7578981501a73170427a8e8affb4d43542551a0 (
plain)
1
2
3
4
5
6
7
8
|
package de.danoeh.antennapod.adapter;
import de.danoeh.antennapod.core.feed.FeedItem;
public interface ActionButtonCallback {
/** Is called when the action button of a list item has been pressed. */
abstract void onActionButtonPressed(FeedItem item);
}
|