Example usage for javax.swing AbstractAction subclass-usage

List of usage examples for javax.swing AbstractAction subclass-usage

Introduction

In this page you can find the example usage for javax.swing AbstractAction subclass-usage.

Usage

From source file fxts.stations.core.ATradeAction.java

/**
 * Base abstract class for trade actions.
 */
public abstract class ATradeAction extends AbstractAction {
    protected final Log mLogger = LogFactory.getLog(ATradeAction.class);

From source file coolmap.canvas.action.PasteRowNodesAction.java

/**
 *
 * @author sugang
 */
public class PasteRowNodesAction extends AbstractAction {

From source file repast.simphony.data.analysis.AnalysisPluginRunner.java

/**
 * The AnalysisPluginRunner is a helper class that should be extended by simple
 * plugin runner classes for running command line applications from the gui
 * 
 * @author Eric Tatara
 * 

From source file org.rimudb.editor.actions.AboutAction.java

/**
 * @author Simon Ritchie
 *
 */
public class AboutAction extends AbstractAction {
    private final static Log log = LogFactory.getLog(AboutAction.class);

From source file org.jdal.swing.IconAction.java

/**
 * @author Jose Luis Martin - (jlm@joseluismartin.info)
 *
 */
public abstract class IconAction extends AbstractAction {

From source file org.jbpm.bpel.tutorial.atm.terminal.LogOffAction.java

/**
 * @author Alejandro Guizar
 * @version $Revision$ $Date: 2007/11/29 10:31:47 $
 */
public class LogOffAction extends AbstractAction {

From source file Main.java

class MyDefaultAction extends AbstractAction {
    Action defAction;

    public MyDefaultAction(Action a) {
        super("My Default Action");
        defAction = a;

From source file de.alpharogroup.duplicate.files.actions.ShowLicenseFrameAction.java

/**
 * The Class ShowLicenseFrameAction.
 */
@SuppressWarnings("serial")
public class ShowLicenseFrameAction extends AbstractAction {

From source file org.rimudb.editor.actions.PreferencesAction.java

/**
 * @author Simon Ritchie
 *
 */
public class PreferencesAction extends AbstractAction {
    private final static Log log = LogFactory.getLog(PreferencesAction.class);

From source file de.iew.imageupload.actions.UploadImageAction.java

/**
 * Action to upload a file into a node JS instance over a TCP socket.
 * <p>
 * The intention is to test the node JS behaviour. The upload is not restricted to node JS. It's just a simple TCP
 * connection.
 * </p>