/*
* 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();
}