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 org.colombbus.tangara.commons.resinject.MessageSenderAction.java

/**
 * Action which send a message (ie no argument method) to a target object when
 * its <code>actionPerformed</code> method is called.
 * <p>
 * Usage:
 * 

From source file uk.co.modularaudio.componentdesigner.mainframe.actions.PlayStopAction.java

public class PlayStopAction extends AbstractAction {
    private static Log log = LogFactory.getLog(PlayStopAction.class.getName());
    /**
     *
     */
    private static final long serialVersionUID = 255449800376156959L;

From source file cool.pandora.modeller.ui.handlers.base.ClearBagHandler.java

/**
 * Clear Bag Handler.
 *
 * @author gov.loc
 */
public class ClearBagHandler extends AbstractAction {

From source file net.sf.webphotos.action.AcaoAdicionarFoto.java

/**
 * Adiciona novas fotos. Mantm variveis do diretrio, tabela, largura da
 * coluna, ttulo da caixa de dilogo e lista de crditos.
 */
public class AcaoAdicionarFoto extends AbstractAction {

From source file Main.java

class PrintHelloAction extends AbstractAction {

    PrintHelloAction() {
        super("Print");
        putValue(Action.SHORT_DESCRIPTION, "Hello, World");
        System.out.println(super.getValue(Action.SHORT_DESCRIPTION));

From source file uk.nhs.cfh.dsp.srth.expression.repository.actions.core.PopulateTCTableAction.java

/**
 * A custom {@link org.jdesktop.application.Task} for computing the transitive closure table
 *
 * <br>Version : @#VersionNumber#@
 * <br>Written by @author Jay Kola
 * <br>Created on Feb 15, 2010 at 3:17:12 AM.

From source file ca.sfu.federation.action.CreateScenarioAction.java

/**
 * Create scenario action.
 * @author Davis Marques
 */
public class CreateScenarioAction extends AbstractAction {

From source file Main.java

class MyAction extends AbstractAction {
    public MyAction() {
        super("Insert Space");
    }

    public void actionPerformed(ActionEvent evt) {

From source file dbseer.gui.actions.OpenDirectoryAction.java

/**
 * Created by dyoon on 2014. 5. 26..
 */
public class OpenDirectoryAction extends AbstractAction {
    private DBSeerDataSet profile;
    private DBSeerFileLoadDialog loadDialog;

From source file Main.java

class PrintHelloAction extends AbstractAction {

    PrintHelloAction() {
        super("Print");
        putValue(Action.SHORT_DESCRIPTION, "Hello, World");
        PropertyChangeListener[] listeners = super.getPropertyChangeListeners();