test/jdk/java/awt/Focus/ActualFocusedWindowTest/ActualFocusedWindowBlockingTest.java
changeset 54231 e4813eded7cb
parent 47216 71c04702a3d5
equal deleted inserted replaced
54230:d9d9655bb077 54231:e4813eded7cb
     1 /*
     1 /*
     2  * Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    24 /*
    24 /*
    25   @test
    25   @test
    26   @key headful
    26   @key headful
    27   @bug       6314575
    27   @bug       6314575
    28   @summary   Tests that previosly focused owned window doesn't steal focus when an owner's component requests focus.
    28   @summary   Tests that previosly focused owned window doesn't steal focus when an owner's component requests focus.
    29   @author    Anton.Tarasov: area=awt.focus
       
    30   @library   ../../regtesthelpers
    29   @library   ../../regtesthelpers
    31   @build     Util
    30   @build     Util
    32   @run       main ActualFocusedWindowBlockingTest
    31   @run       main ActualFocusedWindowBlockingTest
    33 */
    32 */
    34 
    33 
    35 import java.awt.*;
    34 import java.awt.*;
    36 import java.awt.event.*;
    35 import java.awt.event.*;
    37 import java.applet.Applet;
       
    38 import java.util.concurrent.atomic.AtomicBoolean;
       
    39 import java.lang.reflect.InvocationTargetException;
       
    40 import test.java.awt.regtesthelpers.Util;
    36 import test.java.awt.regtesthelpers.Util;
    41 
    37 
    42 public class ActualFocusedWindowBlockingTest extends Applet {
    38 public class ActualFocusedWindowBlockingTest {
    43     Robot robot = Util.createRobot();
    39     Robot robot = Util.createRobot();
    44     Frame owner = new Frame("Owner Frame");
    40     Frame owner = new Frame("Owner Frame");
    45     Window win = new Window(owner);
    41     Window win = new Window(owner);
    46     Frame frame = new Frame("Auxiliary Frame");
    42     Frame frame = new Frame("Auxiliary Frame");
    47     Button fButton = new Button("frame button") {public String toString() {return "Frame_Button";}};
    43     Button fButton = new Button("frame button") {public String toString() {return "Frame_Button";}};