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