src/share/classes/javax/swing/plaf/metal/MetalToolBarUI.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 115,125 **** /** * Finds a previously registered component of class <code>target</code> * that shares the JRootPane ancestor of <code>from</code>. */ synchronized static Object findRegisteredComponentOfType(JComponent from, ! Class target) { JRootPane rp = SwingUtilities.getRootPane(from); if (rp != null) { for (int counter = components.size() - 1; counter >= 0; counter--){ Object component = ((WeakReference)components.get(counter)). get(); --- 115,125 ---- /** * Finds a previously registered component of class <code>target</code> * that shares the JRootPane ancestor of <code>from</code>. */ synchronized static Object findRegisteredComponentOfType(JComponent from, ! Class<?> target) { JRootPane rp = SwingUtilities.getRootPane(from); if (rp != null) { for (int counter = components.size() - 1; counter >= 0; counter--){ Object component = ((WeakReference)components.get(counter)). get();