888N/A/*
888N/A * Copyright (c) 2000, 2008, Oracle and/or its affiliates. All rights reserved.
888N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
888N/A *
888N/A * This code is free software; you can redistribute it and/or modify it
888N/A * under the terms of the GNU General Public License version 2 only, as
888N/A * published by the Free Software Foundation.
888N/A *
888N/A * This code is distributed in the hope that it will be useful, but WITHOUT
888N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
888N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
888N/A * version 2 for more details (a copy is included in the LICENSE file that
888N/A * accompanied this code).
888N/A *
888N/A * You should have received a copy of the GNU General Public License version
888N/A * 2 along with this work; if not, write to the Free Software Foundation,
888N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
888N/A *
888N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
888N/A * or visit www.oracle.com if you need additional information or have any
888N/A * questions.
888N/A *
888N/A */
888N/A
888N/A
888N/Apackage com.sun.java.swing.action;
888N/A
888N/Aimport java.awt.event.ActionEvent;
888N/Aimport javax.swing.AbstractAction;
888N/A
888N/Apublic class HelpMenu extends AbstractAction
888N/A{
888N/A
888N/A public HelpMenu()
888N/A {
888N/A super("Help");
888N/A putValue("ActionCommandKey", "help-menu-command");
888N/A putValue("ShortDescription", "Help operations");
888N/A putValue("LongDescription", "Help operations");
888N/A putValue("MnemonicKey", VALUE_MNEMONIC);
888N/A }
888N/A
888N/A public void actionPerformed(ActionEvent actionevent)
888N/A {
888N/A }
888N/A
888N/A public static final String VALUE_COMMAND = "help-menu-command";
888N/A public static final String VALUE_NAME = "Help";
public static final Integer VALUE_MNEMONIC = new Integer(72);
public static final String VALUE_SHORT_DESCRIPTION = "Help operations";
public static final String VALUE_LONG_DESCRIPTION = "Help operations";
}