1 /*
   2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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 /* @test
  25  * @bug 8025130
  26  * @summary setLocationByPlatform has no effect
  27  * @author Dmitry Markov
  28  * @library ../../regtesthelpers
  29  * @build Util
  30  * @run main SetWindowLocationByPlatformTest
  31  */
  32 import java.awt.*;
  33 
  34 import test.java.awt.regtesthelpers.Util;
  35 
  36 public class SetWindowLocationByPlatformTest {
  37     public static void main(String[] args) {
  38         Robot r = Util.createRobot();
  39 
  40         Frame frame1 = new Frame ("First Frame");
  41         frame1.setSize(500, 300);
  42         frame1.setLocationByPlatform(true);
  43         frame1.setVisible(true);
  44         Util.waitForIdle(r);
  45 
  46         Frame frame2 = new Frame ("Second Frame");
  47         frame2.setSize(500, 300);
  48         frame2.setLocationByPlatform(true);
  49         frame2.setVisible(true);
  50         Util.waitForIdle(r);
  51 
  52         Point point1 = frame1.getLocationOnScreen();
  53         Point point2 = frame2.getLocationOnScreen();
  54 
  55         try {
  56             if (point1.equals(point2)) {
  57                 throw new RuntimeException("Test FAILED: both frames have the same location " + point1);
  58             }
  59         } finally {
  60             frame1.dispose();
  61             frame2.dispose();
  62         }
  63     }
  64 }
  65