Path: blob/master/test/jdk/javax/accessibility/8069268/bug8069268.java
41152 views
/*1* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/222324/*25@test26@bug 806926827@summary Tests that only one ContainerListener exists for AccessibleJComponent of JRootPane28@author Vivi An29*/30import javax.swing.*;31import java.awt.event.*;32import javax.accessibility.*;3334public class bug8069268{35public static void main(String[] args) throws Exception {36TestableRootPane rootPane = new TestableRootPane();3738// Get accesibleContext and then AccessibleJComponent, call the function39// addPropertyChangeListener to trigger container listener to be added40AccessibleContext acc = rootPane.getAccessibleContext();41JComponent.AccessibleJComponent accJ = (JComponent.AccessibleJComponent) acc;42accJ.addPropertyChangeListener(null);4344// Test how many container listener(s) exist(s), should only have 145if (!rootPane.testContainerListener())46throw new RuntimeException("Failed test for bug 8069268");47}4849private static class TestableRootPane extends JRootPane {50public boolean testContainerListener() {51boolean result = false;52ContainerListener[] listeners = getContainerListeners();53System.out.println("ContainerListener number is " + listeners.length);54result = (listeners.length == 1) ? true : false;55return result;56}57}58}596061