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