Java JButton initHelpButton(final JButton buttonHelp)

Here you can find the source of initHelpButton(final JButton buttonHelp)

Description

init Help Button

License

Open Source License

Declaration

private static void initHelpButton(final JButton buttonHelp) 

Method Source Code

//package com.java2s;
/*//w  ww  .  ja v a2 s  .c  o  m
 * Copyright 2001-2008 Aqris Software AS. All rights reserved.
 * 
 * This program is dual-licensed under both the Common Development
 * and Distribution License ("CDDL") and the GNU General Public
 * License ("GPL"). You may elect to use one or the other of these
 * licenses.
 */

import javax.swing.JButton;

import java.awt.event.KeyEvent;

public class Main {
    private static void initHelpButton(final JButton buttonHelp) {
        buttonHelp.setMnemonic(KeyEvent.VK_H);
        buttonHelp.setDefaultCapable(false);
    }
}

Related

  1. formatButtonAsLabel(JButton button)
  2. formatJButton(JButton button, String tooltips)
  3. getButtonNumber(JButton btn)
  4. getScrollStroke(final JButton _jlbl_stroke)
  5. getWFStep(Vector actionButtons, String action)
  6. nombreImg(JButton boton)
  7. normalizeComponentDimension(JComponent[] jButtonList)
  8. nullifyButtonUI(final JButton button)
  9. orderOKCancelButtons(JButton okButton, JButton cancelButton)