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

package net.jesterpm.podcastuploader.ui;

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