test/jdk/java/awt/Focus/IconifiedFrameFocusChangeTest/IconifiedFrameFocusChangeTest.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       6522725
    27   @bug       6522725
    28   @summary   Tests for proper request-focus-back on FOCUS_LOST.
    28   @summary   Tests for proper request-focus-back on FOCUS_LOST.
    29   @author    Anton Tarasov: area=awt-focus
       
    30   @library   ../../regtesthelpers
    29   @library   ../../regtesthelpers
    31   @build     Util
    30   @build     Util
    32   @run       main IconifiedFrameFocusChangeTest
    31   @run       main IconifiedFrameFocusChangeTest
    33 */
    32 */
    34 
    33 
    35 import java.awt.*;
    34 import java.awt.*;
    36 import java.applet.Applet;
       
    37 import java.awt.event.*;
    35 import java.awt.event.*;
    38 import test.java.awt.regtesthelpers.Util;
    36 import test.java.awt.regtesthelpers.Util;
    39 
    37 
    40 public class IconifiedFrameFocusChangeTest extends Applet {
    38 public class IconifiedFrameFocusChangeTest {
    41     Frame testFrame = new Frame("Test Frame");
    39     Frame testFrame = new Frame("Test Frame");
    42     Frame otherFrame = new Frame("Other Frame");
    40     Frame otherFrame = new Frame("Other Frame");
    43     Button testButton = new Button("test button");
    41     Button testButton = new Button("test button");
    44     Button otherButton = new Button("other button");
    42     Button otherButton = new Button("other button");
    45     Robot robot;
    43     Robot robot;