bug6872503.java revision 1631
0N/A/*
0N/A * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
0N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A * CA 95054 USA or visit www.sun.com if you need additional information or
0N/A * have any questions.
0N/A */
0N/A
0N/A/* @test
0N/A * @bug 6872503
0N/A * @summary Checks that JLayer correctly works with its AWTEventListener
0N/A * @author Alexander Potochkin
0N/A */
0N/A
0N/Aimport javax.swing.*;
0N/Aimport java.awt.*;
0N/Aimport java.awt.event.AWTEventListener;
0N/Aimport java.awt.event.AWTEventListenerProxy;
0N/A
0N/Apublic class bug6872503 {
0N/A
0N/A static JLayer<Component> l1;
0N/A static JLayer<Component> l2;
0N/A
0N/A private static void createGui() {
0N/A Toolkit toolkit = Toolkit.getDefaultToolkit();
0N/A int length = toolkit.getAWTEventListeners().length;
0N/A
0N/A l1 = new JLayer<Component>();
0N/A l1.setLayerEventMask(AWTEvent.MOUSE_EVENT_MASK | AWTEvent.FOCUS_EVENT_MASK);
0N/A
0N/A l2 = new JLayer<Component>();
0N/A l2.setLayerEventMask(AWTEvent.MOUSE_EVENT_MASK | AWTEvent.KEY_EVENT_MASK);
0N/A
0N/A if (isLayerEventControllerAdded()) {
0N/A throw new RuntimeException("Unexpected AWTEventListener was added");
0N/A }
0N/A
0N/A JFrame frame = new JFrame();
frame.setLayout(new FlowLayout());
frame.add(l1);
frame.add(l2);
if (isLayerEventControllerAdded()) {
throw new RuntimeException("Unexpected AWTEventListener was added");
}
frame.pack();
if (!isLayerEventControllerAdded()) {
throw new RuntimeException("AWTEventListener was not added");
}
if (!layerEventControllerMaskEquals(l1.getLayerEventMask() | l2.getLayerEventMask())) {
throw new RuntimeException("Wrong mask for AWTEventListener");
}
frame.dispose();
if (isLayerEventControllerAdded()) {
throw new RuntimeException("Unexpected AWTEventListener was added");
}
}
static boolean isLayerEventControllerAdded() {
Toolkit toolkit = Toolkit.getDefaultToolkit();
AWTEventListener layerEventController = null;
for (AWTEventListener listener : toolkit.getAWTEventListeners()) {
if (listener instanceof AWTEventListenerProxy) {
listener = ((AWTEventListenerProxy)listener).getListener();
}
if ("LayerEventController".equals(listener.getClass().getSimpleName())) {
if (layerEventController != null) {
throw new RuntimeException("Duplicated LayerEventController");
}
layerEventController = listener;
}
}
boolean ret = layerEventController != null;
if (ret) {
System.out.println("LayerEventController found");
} else {
System.out.println("No LayerEventController");
}
return ret;
}
static boolean layerEventControllerMaskEquals(long mask) {
Toolkit toolkit = Toolkit.getDefaultToolkit();
AWTEventListener layerEventController = null;
for (AWTEventListener listener : toolkit.getAWTEventListeners(mask)) {
if (listener instanceof AWTEventListenerProxy) {
listener = ((AWTEventListenerProxy)listener).getListener();
}
if ("LayerEventController".equals(listener.getClass().getSimpleName())) {
if (layerEventController != null) {
throw new RuntimeException("Duplicated LayerEventController");
}
layerEventController = listener;
}
}
boolean ret = layerEventController != null;
if (ret) {
System.out.println("LayerEventController with the correct mask found");
} else {
System.out.println("No LayerEventController with the correct mask");
}
return ret;
}
public static void main(String[] args) throws Exception {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
bug6872503.createGui();
}
});
}
}