< prev index next >

test/javax/swing/JComboBox/8057893/bug8057893.java

Print this page
rev 14989 : 8160974: [TESTBUG] Mark more headful tests with @key headful.


  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 import java.awt.EventQueue;
  25 import java.awt.Robot;
  26 import java.awt.Toolkit;
  27 import java.awt.event.ActionEvent;
  28 import java.awt.event.ActionListener;
  29 import java.awt.event.KeyEvent;
  30 import javax.swing.JComboBox;
  31 import javax.swing.JFrame;
  32 import javax.swing.WindowConstants;
  33 
  34 /**
  35  * @test

  36  * @bug 8057893
  37  * @author Alexander Scherbatiy
  38  * @summary JComboBox actionListener never receives "comboBoxEdited"
  39  *   from getActionCommand
  40  * @run main bug8057893
  41  */
  42 public class bug8057893 {
  43 
  44     private static volatile boolean isComboBoxEdited = false;
  45 
  46     public static void main(String[] args) throws Exception {
  47         Robot robot = new Robot();
  48         robot.setAutoDelay(50);
  49 
  50         EventQueue.invokeAndWait(() -> {
  51             JFrame frame = new JFrame();
  52             frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
  53             JComboBox<String> comboBox = new JComboBox<>(new String[]{"one", "two"});
  54             comboBox.setEditable(true);
  55             comboBox.addActionListener(new ActionListener() {




  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 import java.awt.EventQueue;
  25 import java.awt.Robot;
  26 import java.awt.Toolkit;
  27 import java.awt.event.ActionEvent;
  28 import java.awt.event.ActionListener;
  29 import java.awt.event.KeyEvent;
  30 import javax.swing.JComboBox;
  31 import javax.swing.JFrame;
  32 import javax.swing.WindowConstants;
  33 
  34 /**
  35  * @test
  36  * @key headful
  37  * @bug 8057893
  38  * @author Alexander Scherbatiy
  39  * @summary JComboBox actionListener never receives "comboBoxEdited"
  40  *   from getActionCommand
  41  * @run main bug8057893
  42  */
  43 public class bug8057893 {
  44 
  45     private static volatile boolean isComboBoxEdited = false;
  46 
  47     public static void main(String[] args) throws Exception {
  48         Robot robot = new Robot();
  49         robot.setAutoDelay(50);
  50 
  51         EventQueue.invokeAndWait(() -> {
  52             JFrame frame = new JFrame();
  53             frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
  54             JComboBox<String> comboBox = new JComboBox<>(new String[]{"one", "two"});
  55             comboBox.setEditable(true);
  56             comboBox.addActionListener(new ActionListener() {


< prev index next >