Java Swing KeyStroke createKeyMask(final int aKeyStroke, final int... aMasks)

Here you can find the source of createKeyMask(final int aKeyStroke, final int... aMasks)

Description

Convenience method to create a key mask.

License

Open Source License

Parameter

Parameter Description
aKeyStroke the key stroke to create a key mask for;
aMasks the (optional) mask modifiers to use.

Return

a keystroke instance.

Declaration

public static final KeyStroke createKeyMask(final int aKeyStroke, final int... aMasks) 

Method Source Code

//package com.java2s;
/*/*from   w  w  w  . j a va 2s . c om*/
 * OpenBench LogicSniffer / SUMP project
 *
 * This program 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 2 of the License, or (at
 * your option) any later version.
 *
 * This program 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, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
 *
 * 
 * Copyright (C) 2010-2011 - J.W. Janssen, http://www.lxtreme.nl
 */

import javax.swing.*;

public class Main {
    /**
     * Convenience method to create a key mask.
     * 
     * @param aKeyStroke
     *          the key stroke to create a key mask for;
     * @param aMasks
     *          the (optional) mask modifiers to use.
     * @return a keystroke instance.
     */
    public static final KeyStroke createKeyMask(final int aKeyStroke, final int... aMasks) {
        int modifiers = 0;
        for (int aMask : aMasks) {
            modifiers |= aMask;
        }
        return KeyStroke.getKeyStroke(aKeyStroke, modifiers);
    }
}

Related

  1. closeOnKeyStroke(JRootPane rootPane, KeyStroke keyStroke)
  2. componentListensForKey(JComponent component, int keyCode)
  3. configAction(Action action, String text, Icon icon, KeyStroke keyStroke)
  4. convertShortcutMask(KeyStroke ks, int shortcutMask)
  5. createItem(String name, Integer mnem, KeyStroke accel)
  6. fixTabKeys(final JComponent component)
  7. getAccelerator(final int key)
  8. getActionForKeystroke(JComponent component, int inputMapId, KeyStroke keyStroke)
  9. getKeyStroke(String s)