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 ro.nextreports.designer.action.report.layout.export.ExportAction.java

/**
 * @author mihai.panaitescu
 */
public abstract class ExportAction extends AbstractAction {

    private static final Log LOG = LogFactory.getLog(ExportAction.class);

From source file VASSAL.launch.AbstractLaunchAction.java

/**
 *
 * The base class for {@link Action}s which launch processes from the
 * {@link ModuleManagerWindow}.
 *
 * @author Joel Uckelman

From source file org.fhcrc.cpl.viewer.gui.FeatureSelectionFrame.java

public class FeatureSelectionFrame extends AbstractAction implements PropertyChangeListener {
    protected static Logger _log = Logger.getLogger(FeatureSelectionFrame.class);

    public FeatureSelectionDialog dialog = null;

    public void propertyChange(PropertyChangeEvent event) {

From source file SiteFrame.java

class PasteAction extends AbstractAction {
    SiteManager manager;

    public PasteAction(SiteManager sm) {
        super("", new ImageIcon("paste.gif"));
        manager = sm;

From source file SampleDesktop.java

class TileAction extends AbstractAction {
    private JDesktopPane desk; // the desktop to work with

    public TileAction(JDesktopPane desk) {
        super("Tile Frames");
        this.desk = desk;

From source file es.emergya.ui.plugins.admin.aux1.SummaryAction.java

/**
 * 
 * @author fario
 * @author marias
 * 
 */

From source file MenuTest.java

/**
 * A sample action that prints the action name to System.out
 */
class TestAction extends AbstractAction {
    public TestAction(String name) {
        super(name);

From source file net.sf.jabref.gui.plaintextimport.TextInputDialog.java

abstract class BasicAction extends AbstractAction {
    public BasicAction(String text, String description, Icon icon) {
        super(text, icon);
        putValue(Action.SHORT_DESCRIPTION, description);
    }