< prev index next >

src/java.desktop/share/classes/sun/awt/LightweightFrame.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 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) 2013, 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
*** 86,95 **** --- 86,96 ---- @Override public final void setResizable(boolean resizable) {} @Override public final void remove(MenuComponent m) {} @Override public final void toFront() {} @Override public final void toBack() {} + @SuppressWarnings("deprecation") @Override public void addNotify() { synchronized (getTreeLock()) { if (getPeer() == null) { SunToolkit stk = (SunToolkit)Toolkit.getDefaultToolkit(); try {
*** 112,121 **** --- 113,123 ---- * this functionality. * * @param activate if <code>true</code>, activates the frame; * otherwise, deactivates the frame */ + @SuppressWarnings("deprecation") public void emulateActivation(boolean activate) { ((FramePeer)getPeer()).emulateActivation(activate); } /**
< prev index next >