< prev index next >

test/jdk/java/awt/KeyboardFocusmanager/TypeAhead/MenuItemActivatedTest/MenuItemActivatedTest.java

Print this page




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25   test

  26   @bug       6396785
  27   @summary   MenuItem activated with space should swallow this space.
  28   @author    anton.tarasov@...: area=awt.focus
  29   @run       applet MenuItemActivatedTest.html

  30 */
  31 
  32 import java.awt.*;
  33 import java.awt.event.*;
  34 import javax.swing.*;
  35 import java.applet.Applet;
  36 import java.util.concurrent.atomic.AtomicBoolean;
  37 import java.lang.reflect.InvocationTargetException;
  38 import test.java.awt.regtesthelpers.Util;
  39 
  40 public class MenuItemActivatedTest extends Applet {
  41     Robot robot;
  42     JFrame frame = new JFrame("Test Frame");
  43     JDialog dialog = new JDialog((Window)null, "Test Dialog", Dialog.ModalityType.DOCUMENT_MODAL);
  44     JTextField text = new JTextField();
  45     JMenuBar bar = new JMenuBar();
  46     JMenu menu = new JMenu("Menu");
  47     JMenuItem item = new JMenuItem("item");
  48     AtomicBoolean gotEvent = new AtomicBoolean(false);
  49 
  50     public static void main(String[] args) {
  51         MenuItemActivatedTest app = new MenuItemActivatedTest();
  52         app.init();
  53         app.start();
  54     }
  55 
  56     public void init() {
  57         robot = Util.createRobot();
  58 
  59         // Create instructions for the user here, as well as set up
  60         // the environment -- set the layout manager, add buttons,
  61         // etc.
  62         this.setLayout (new BorderLayout ());
  63     }
  64 
  65     public void start() {
  66         menu.setMnemonic('f');
  67         menu.add(item);
  68         bar.add(menu);
  69         frame.setJMenuBar(bar);
  70         frame.pack();

  71 
  72         item.addActionListener(new ActionListener() {
  73                 public void actionPerformed(ActionEvent ae) {
  74                     dialog.add(text);
  75                     dialog.pack();
  76                 dialog.setVisible(true);
  77                 }
  78             });
  79 
  80         text.addKeyListener(new KeyAdapter() {
  81                 public void keyTyped(KeyEvent e) {
  82                     if (e.getKeyChar() == ' ') {
  83                         System.out.println(e.toString());
  84                         synchronized (gotEvent) {
  85                             gotEvent.set(true);
  86                             gotEvent.notifyAll();
  87                         }
  88                     }
  89                 }
  90             });




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25   @test
  26   @key headful
  27   @bug        6396785
  28   @summary    MenuItem activated with space should swallow this space.
  29   @library    ../../../regtesthelpers
  30   @build      Util
  31   @run        main MenuItemActivatedTest
  32 */
  33 
  34 import java.awt.*;
  35 import java.awt.event.*;
  36 import javax.swing.*;

  37 import java.util.concurrent.atomic.AtomicBoolean;

  38 import test.java.awt.regtesthelpers.Util;
  39 
  40 public class MenuItemActivatedTest {
  41     Robot robot;
  42     JFrame frame = new JFrame("Test Frame");
  43     JDialog dialog = new JDialog((Window)null, "Test Dialog", Dialog.ModalityType.DOCUMENT_MODAL);
  44     JTextField text = new JTextField();
  45     JMenuBar bar = new JMenuBar();
  46     JMenu menu = new JMenu("Menu");
  47     JMenuItem item = new JMenuItem("item");
  48     AtomicBoolean gotEvent = new AtomicBoolean(false);
  49 
  50     public static void main(String[] args) {
  51         MenuItemActivatedTest app = new MenuItemActivatedTest();
  52         app.init();
  53         app.start();
  54     }
  55 
  56     public void init() {
  57         robot = Util.createRobot();





  58     }
  59 
  60     public void start() {
  61         menu.setMnemonic('f');
  62         menu.add(item);
  63         bar.add(menu);
  64         frame.setJMenuBar(bar);
  65         frame.pack();
  66         frame.setLocationRelativeTo(null);
  67 
  68         item.addActionListener(new ActionListener() {
  69                 public void actionPerformed(ActionEvent ae) {
  70                     dialog.add(text);
  71                     dialog.pack();
  72                 dialog.setVisible(true);
  73                 }
  74             });
  75 
  76         text.addKeyListener(new KeyAdapter() {
  77                 public void keyTyped(KeyEvent e) {
  78                     if (e.getKeyChar() == ' ') {
  79                         System.out.println(e.toString());
  80                         synchronized (gotEvent) {
  81                             gotEvent.set(true);
  82                             gotEvent.notifyAll();
  83                         }
  84                     }
  85                 }
  86             });


< prev index next >