Java Swing ActionMap putAction(Action action)

Here you can find the source of putAction(Action action)

Description

put Action

License

Open Source License

Declaration

public static synchronized void putAction(Action action) 

Method Source Code


//package com.java2s;
/*//w w w  .jav  a 2s  .c  om
 * Ejisto, a powerful developer assistant
 *
 * Copyright (C) 2010-2013 Celestino Bellone
 *
 * Ejisto is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Ejisto is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.swing.*;

public class Main {
    private static ActionMap actionMap = new ActionMap();

    public static synchronized void putAction(Action action) {
        actionMap.put(action.getValue(Action.NAME), action);
    }

    public static synchronized void putAction(Object key, Action action) {
        actionMap.put(key, action);
    }
}

Related

  1. dumpActionMap(JComponent comp)
  2. fillInputMap(ActionMap am)
  3. installActions(JComponent comp, Action actions[], int condition)
  4. printActionInputMap(JComponent comp)
  5. printActionMap(ActionMap actionMap, String who)
  6. putAction(JComponent component, Action action)
  7. registerAction(JComponent component, int condition, Action action, String command)
  8. registerUndoRedoActions(JComponent jtc, Action undoAction, Action redoAction)
  9. removeAction(InputMap im, ActionMap am, String name)