FramePeer is an interface that defines the basis for a frame.
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); }
New image to use for frame peer's icon.
Changes the icon associated with the frame's peer.
New MenuBar to use for the frame's peer.
Changes the menu bar of the frame.
true if the frame's peer should allow resizing, false to prevent resizing.
Changes the resize state of the frame's peer.
New title to use for the frame's peer.
Changes the title of the frame's peer.
Image, MenuBar, String, WindowPeer