java.awt.peer
Interface FramePeer

All Superinterfaces:
ComponentPeer, ContainerPeer, WindowPeer

public interface FramePeer
extends WindowPeer


Method Summary
 Rectangle getBoundsPrivate()
           
 int getState()
           
 boolean isRestackSupported()
          Check if this frame peer supports being restacked.
 void setBoundsPrivate(int x, int y, int width, int height)
          Sets the bounds of this frame peer.
 void setIconImage(Image image)
           
 void setMaximizedBounds(Rectangle r)
           
 void setMenuBar(MenuBar mb)
           
 void setResizable(boolean resizable)
           
 void setState(int state)
           
 void setTitle(String title)
           
 
Methods inherited from interface java.awt.peer.WindowPeer
requestWindowFocus, setAlwaysOnTop, setModalBlocked, toBack, toFront, updateAlwaysOnTop, updateFocusableWindowState, updateIconImages, updateMinimumSize
 
Methods inherited from interface java.awt.peer.ContainerPeer
beginLayout, beginValidate, cancelPendingPaint, endLayout, endValidate, getInsets, insets, isPaintPending, restack
 
Methods inherited from interface java.awt.peer.ComponentPeer
canDetermineObscurity, checkImage, coalescePaintEvent, createBuffers, createImage, createImage, createVolatileImage, destroyBuffers, disable, dispose, enable, flip, getBackBuffer, getBounds, getColorModel, getFontMetrics, getGraphics, getGraphicsConfiguration, getLocationOnScreen, getMinimumSize, getPreferredSize, getToolkit, handleEvent, handlesWheelScrolling, hide, isFocusable, isFocusTraversable, isObscured, isReparentSupported, layout, minimumSize, paint, preferredSize, prepareImage, print, repaint, reparent, requestFocus, requestFocus, requestFocus, reshape, setBackground, setBounds, setBounds, setCursor, setEnabled, setEventMask, setFont, setForeground, setVisible, show, updateCursorImmediately
 

Method Detail

setIconImage

void setIconImage(Image image)

setMenuBar

void setMenuBar(MenuBar mb)

setResizable

void setResizable(boolean resizable)

setTitle

void setTitle(String title)

getState

int getState()

setState

void setState(int state)

setMaximizedBounds

void setMaximizedBounds(Rectangle r)

isRestackSupported

boolean isRestackSupported()
Check if this frame peer supports being restacked.

Specified by:
isRestackSupported in interface ContainerPeer
Returns:
true if this frame peer can be restacked, false otherwise
Since:
1.5

setBoundsPrivate

void setBoundsPrivate(int x,
                      int y,
                      int width,
                      int height)
Sets the bounds of this frame peer.

Parameters:
x - the new x co-ordinate
y - the new y co-ordinate
width - the new width
height - the new height
Since:
1.5

getBoundsPrivate

Rectangle getBoundsPrivate()