src/share/classes/java/awt/peer/WindowPeer.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1995, 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) 1995, 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
*** 92,109 **** */ void updateIconImages(); /** * Sets the level of opacity for the window. ! * * @see Window#setOpacity(float) */ void setOpacity(float opacity); /** * Enables the per-pixel alpha support for the window. ! * * @see Window#setBackground(Color) */ void setOpaque(boolean isOpaque); /** --- 92,110 ---- */ void updateIconImages(); /** * Sets the level of opacity for the window. ! * @param opacity the level of opacity * @see Window#setOpacity(float) */ void setOpacity(float opacity); /** * Enables the per-pixel alpha support for the window. ! * @param isOpaque whether or not per-pixel alpha support is ! * enabled * @see Window#setBackground(Color) */ void setOpaque(boolean isOpaque); /**