< prev index next >

src/share/classes/sun/awt/EmbeddedFrame.java

Print this page
rev 1556 : 6794764: Translucent windows are completely repainted on every paint event, on Windows
6719382: Printing of AWT components on windows is not working
6726866: Repainting artifacts when resizing or dragging JInternalFrames in non-opaque toplevel
6683775: Painting artifacts is seen when panel is made setOpaque(false) for a translucent window
Reviewed-by: anthony, tdv, alexp


 567         public void restack() {
 568             throw new UnsupportedOperationException();
 569         }
 570 
 571         /**
 572          * @see java.awt.peer.ContainerPeer#isRestackSupported
 573          */
 574         public boolean isRestackSupported() {
 575             return false;
 576         }
 577         public boolean requestWindowFocus() {
 578             return false;
 579         }
 580         public void updateMinimumSize() {
 581         }
 582 
 583         public void setOpacity(float opacity) {
 584         }
 585         public void setOpaque(boolean isOpaque) {
 586         }
 587         public void updateWindow(BufferedImage backBuffer) {
 588         }

 589         public void repositionSecurityWarning() {
 590         }
 591      }
 592 } // class EmbeddedFrame


 567         public void restack() {
 568             throw new UnsupportedOperationException();
 569         }
 570 
 571         /**
 572          * @see java.awt.peer.ContainerPeer#isRestackSupported
 573          */
 574         public boolean isRestackSupported() {
 575             return false;
 576         }
 577         public boolean requestWindowFocus() {
 578             return false;
 579         }
 580         public void updateMinimumSize() {
 581         }
 582 
 583         public void setOpacity(float opacity) {
 584         }
 585         public void setOpaque(boolean isOpaque) {
 586         }
 587         public void updateWindow() {
 588         }
 589 
 590         public void repositionSecurityWarning() {
 591         }
 592      }
 593 } // class EmbeddedFrame
< prev index next >