KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > peer > WindowPeer


1 /*
2  * @(#)WindowPeer.java 1.19 06/04/11
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.awt.peer;
9
10 import java.awt.*;
11 import java.awt.event.KeyEvent JavaDoc;
12
13 /**
14  * The peer interfaces are intended only for use in porting
15  * the AWT. They are not intended for use by application
16  * developers, and developers should not implement peers
17  * nor invoke any of the peer methods directly on the peer
18  * instances.
19  */

20 public interface WindowPeer extends ContainerPeer {
21     void toFront();
22     void toBack();
23     void updateAlwaysOnTop();
24     void updateFocusableWindowState();
25     boolean requestWindowFocus();
26 }
27
28
Popular Tags