java.awt.peer
Interface ContainerPeer

All Superinterfaces:
ComponentPeer
All Known Subinterfaces:
DialogPeer, FileDialogPeer, FramePeer, PanelPeer, ScrollPanePeer, WindowPeer

public interface ContainerPeer
extends ComponentPeer

The peer interfaces are intended only for use in porting the AWT. They are not intended for use by application developers, and developers should not implement peers nor invoke any of the peer methods directly on the peer instances.


Field Summary
 
Fields inherited from interface java.awt.peer.ComponentPeer
DEFAULT_OPERATION, NO_EMBEDDED_CHECK, RESET_OPERATION, SET_BOUNDS, SET_CLIENT_SIZE, SET_LOCATION, SET_SIZE
 
Method Summary
 void beginLayout()
           
 void beginValidate()
           
 void endLayout()
           
 void endValidate()
           
 java.awt.Insets getInsets()
           
 boolean isRestackSupported()
          Indicates availabiltity of restacking operation in this container.
 void restack()
          Restacks native windows - children of this native window - according to Java container order
 
Methods inherited from interface java.awt.peer.ComponentPeer
applyShape, canDetermineObscurity, checkImage, coalescePaintEvent, createBuffers, createImage, createImage, createVolatileImage, destroyBuffers, dispose, flip, getBackBuffer, getColorModel, getFontMetrics, getGraphics, getGraphicsConfiguration, getLocationOnScreen, getMinimumSize, getPreferredSize, getToolkit, handleEvent, handlesWheelScrolling, isFocusable, isObscured, isReparentSupported, layout, paint, prepareImage, print, reparent, requestFocus, setBackground, setBounds, setEnabled, setFont, setForeground, setVisible, updateCursorImmediately
 

Method Detail

getInsets

java.awt.Insets getInsets()

beginValidate

void beginValidate()

endValidate

void endValidate()

beginLayout

void beginLayout()

endLayout

void endLayout()

restack

void restack()
Restacks native windows - children of this native window - according to Java container order

Since:
1.5

isRestackSupported

boolean isRestackSupported()
Indicates availabiltity of restacking operation in this container.

Returns:
Returns true if restack is supported, false otherwise
Since:
1.5