summaryrefslogtreecommitdiff
path: root/src/main/java/net/jesterpm/podcastuploader/ui/Action.java
blob: 10ea2482407958f15ab176559bfc8203a0940464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright 2012-2017 Jesse Morgan <jesse@jesterpm.net>
 */

package net.jesterpm.podcastuploader.ui;

/**
 * Action handler for the UI.
 *
 * @author Jesse Morgan <jesse@jesterpm.net>
 */
@FunctionalInterface
public interface Action {
    /**
     * This method is called when the action is performed.
     */
    void onAction();
}