Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 * 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);
    }
}