< prev index next >

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

Print this page




 535         public void updateIconImages() {}
 536         public void setMenuBar(MenuBar mb) {}
 537         public void setResizable(boolean resizeable) {}
 538         public void setState(int state) {}
 539         public int getState() { return Frame.NORMAL; }
 540         public void setMaximizedBounds(Rectangle b) {}
 541         public void toFront() {}
 542         public void toBack() {}
 543         public void updateFocusableWindowState() {}
 544         public void updateAlwaysOnTop() {}
 545         public void updateAlwaysOnTopState() {}
 546         public Component getGlobalHeavyweightFocusOwner() { return null; }
 547         public void setBoundsPrivate(int x, int y, int width, int height) {
 548             setBounds(x, y, width, height, SET_BOUNDS);
 549         }
 550         public Rectangle getBoundsPrivate() {
 551             return getBounds();
 552         }
 553         public void setModalBlocked(Dialog blocker, boolean blocked) {}
 554 
 555         /**
 556          * @see java.awt.peer.ContainerPeer#restack
 557          */
 558         public void restack() {
 559             throw new UnsupportedOperationException();
 560         }
 561 
 562         /**
 563          * @see java.awt.peer.ContainerPeer#isRestackSupported
 564          */
 565         public boolean isRestackSupported() {
 566             return false;
 567         }
 568         public boolean requestWindowFocus() {
 569             return false;
 570         }
 571         public void updateMinimumSize() {
 572         }
 573 
 574         public void setOpacity(float opacity) {
 575         }
 576 
 577         public void setOpaque(boolean isOpaque) {
 578         }
 579 
 580         public void updateWindow() {
 581         }
 582 
 583         public void repositionSecurityWarning() {
 584         }


 535         public void updateIconImages() {}
 536         public void setMenuBar(MenuBar mb) {}
 537         public void setResizable(boolean resizeable) {}
 538         public void setState(int state) {}
 539         public int getState() { return Frame.NORMAL; }
 540         public void setMaximizedBounds(Rectangle b) {}
 541         public void toFront() {}
 542         public void toBack() {}
 543         public void updateFocusableWindowState() {}
 544         public void updateAlwaysOnTop() {}
 545         public void updateAlwaysOnTopState() {}
 546         public Component getGlobalHeavyweightFocusOwner() { return null; }
 547         public void setBoundsPrivate(int x, int y, int width, int height) {
 548             setBounds(x, y, width, height, SET_BOUNDS);
 549         }
 550         public Rectangle getBoundsPrivate() {
 551             return getBounds();
 552         }
 553         public void setModalBlocked(Dialog blocker, boolean blocked) {}
 554 



 555         public void restack() {
 556             throw new UnsupportedOperationException();
 557         }
 558 



 559         public boolean isRestackSupported() {
 560             return false;
 561         }
 562         public boolean requestWindowFocus() {
 563             return false;
 564         }
 565         public void updateMinimumSize() {
 566         }
 567 
 568         public void setOpacity(float opacity) {
 569         }
 570 
 571         public void setOpaque(boolean isOpaque) {
 572         }
 573 
 574         public void updateWindow() {
 575         }
 576 
 577         public void repositionSecurityWarning() {
 578         }
< prev index next >