Java AWT

Previous Chapter 23
java.awt.peer Reference
Next
 

WindowPeer

Name

WindowPeer

[Graphic: Figure from the text]

Description

WindowPeer is an interface that defines the basis for a window.

Interface Definition

public abstract interface java.awt.peer.WindowPeer
   extends java.awt.peer.ContainerPeer {
  // Interface Methods
  public abstract void toBack();
  public abstract void toFront();
}

Interface Methods

toBack

public abstract void toBack()

Description

Puts the window's peer in the background of the display.

toFront

public abstract void toFront()

Description

Brings the window's peer to the foreground of the display.

See Also

ContainerPeer, DialogPeer, FramePeer


Previous Home Next
TextFieldPeer Book Index Using Properties and Resources

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java