< prev index next >

src/java.desktop/share/classes/java/awt/Window.java

Print this page

        

*** 753,762 **** --- 753,763 ---- * not be called directly by programs. * @see Component#isDisplayable * @see Container#removeNotify * @since 1.0 */ + @SuppressWarnings("deprecation") public void addNotify() { synchronized (getTreeLock()) { Container parent = this.parent; if (parent != null && parent.getPeer() == null) { parent.addNotify();
*** 796,805 **** --- 797,807 ---- * size is being calculated. * * @see Component#isDisplayable * @see #setMinimumSize */ + @SuppressWarnings("deprecation") public void pack() { Container parent = this.parent; if (parent != null && parent.getPeer() == null) { parent.addNotify(); }
*** 1068,1077 **** --- 1070,1080 ---- postWindowEvent(WindowEvent.WINDOW_OPENED); state |= OPENED; } } + @SuppressWarnings("deprecation") static void updateChildFocusableWindowState(Window w) { if (w.getPeer() != null && w.isShowing()) { ((WindowPeer)w.getPeer()).updateFocusableWindowState(); } for (int i = 0; i < w.ownedWindowList.size(); i++) {
*** 1155,1164 **** --- 1158,1168 ---- * Fix for 4872170. * If dispose() is called on parent then its children have to be disposed as well * as reported in javadoc. So we need to implement this functionality even if a * child overrides dispose() in a wrong way without calling super.dispose(). */ + @SuppressWarnings("deprecation") void disposeImpl() { dispose(); if (getPeer() != null) { doDispose(); }
*** 3621,3630 **** --- 3625,3635 ---- * @see GraphicsDevice.WindowTranslucency * @see GraphicsDevice#isWindowTranslucencySupported(GraphicsDevice.WindowTranslucency) * * @since 1.7 */ + @SuppressWarnings("deprecation") public void setOpacity(float opacity) { synchronized (getTreeLock()) { if (opacity < 0.0f || opacity > 1.0f) { throw new IllegalArgumentException( "The value of opacity should be in the range [0.0f .. 1.0f].");
*** 3719,3728 **** --- 3724,3734 ---- * @see GraphicsDevice.WindowTranslucency * @see GraphicsDevice#isWindowTranslucencySupported(GraphicsDevice.WindowTranslucency) * * @since 1.7 */ + @SuppressWarnings("deprecation") public void setShape(Shape shape) { synchronized (getTreeLock()) { if (shape != null) { GraphicsConfiguration gc = getGraphicsConfiguration(); GraphicsDevice gd = gc.getDevice();
*** 3836,3845 **** --- 3842,3852 ---- * @see GraphicsDevice.WindowTranslucency * @see GraphicsDevice#isWindowTranslucencySupported(GraphicsDevice.WindowTranslucency) * @see GraphicsConfiguration#isTranslucencyCapable() */ @Override + @SuppressWarnings("deprecation") public void setBackground(Color bgColor) { Color oldBg = getBackground(); super.setBackground(bgColor); if (oldBg != null && oldBg.equals(bgColor)) { return;
*** 3888,3897 **** --- 3895,3905 ---- public boolean isOpaque() { Color bg = getBackground(); return bg != null ? bg.getAlpha() == 255 : true; } + @SuppressWarnings("deprecation") private void updateWindow() { synchronized (getTreeLock()) { WindowPeer peer = (WindowPeer)getPeer(); if (peer != null) { peer.updateWindow();
*** 4078,4087 **** --- 4086,4096 ---- { window.securityWarningWidth = width; window.securityWarningHeight = height; } + @SuppressWarnings("deprecation") public void setSecurityWarningPosition(Window window, Point2D point, float alignmentX, float alignmentY) { window.securityWarningPointX = point.getX(); window.securityWarningPointY = point.getY();
< prev index next >