home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Java AWT

Previous Chapter 23
java.awt.peer Reference
Next
 

FramePeer

Name

FramePeer

[Graphic: Figure from the text]

Description

FramePeer is an interface that defines the basis for a frame.

Interface Definition

public abstract interface java.awt.peer.FramePeer
   extends java.awt.peer.WindowPeer {
  // Interface Methods
  public abstract void setIconImage (Image image);
  public abstract void setMenuBar (MenuBar bar);
  public abstract void setResizable (boolean resizable);
  public abstract void setTitle (String title);
}

Interface Methods

setIconImage

public abstract void setIconImage (Image image)

Parameters

image

New image to use for frame peer's icon.

Description

Changes the icon associated with the frame's peer.

setMenuBar

public abstract void setMenuBar (MenuBar bar)

Parameters

bar

New MenuBar to use for the frame's peer.

Description

Changes the menu bar of the frame.

setResizable

public abstract void setResizable (boolean resizable)

Parameters

resizable

true if the frame's peer should allow resizing, false to prevent resizing.

Description

Changes the resize state of the frame's peer.

setTitle

public abstract void setTitle (String title)

Parameters

title

New title to use for the frame's peer.

Description

Changes the title of the frame's peer.

See Also

Image, MenuBar, String, WindowPeer


Previous Home Next
FontPeer (New) Book Index LabelPeer

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