Package org.xnap.commons.gui.shortcut

Examples of org.xnap.commons.gui.shortcut.ActionShortcut


    pollAction = new PollAction();
    aboutAction = new AboutAction();
  }
 
  private void initializeShortCuts() {
    sendActionShortcut = new ActionShortcut(sendAction);
    sendActionShortcut.setKeyStroke(KeyStroke.getKeyStroke(KeyEvent.VK_S, KeyEvent.CTRL_MASK));

    updateStatusActionShortcut = new ActionShortcut(updateStatusAction);
    updateStatusActionShortcut.setKeyStroke(KeyStroke.getKeyStroke(KeyEvent.VK_F5, 0));
  }
View Full Code Here

TOP

Related Classes of org.xnap.commons.gui.shortcut.ActionShortcut

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.