java.awt.peer
Interface ContainerPeer

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

public interface ContainerPeer
extends ComponentPeer


Method Summary
 void beginLayout()
           
 void beginValidate()
           
 void cancelPendingPaint(int x, int y, int width, int height)
          Cancel a pending paint event on a region of this container.
 void endLayout()
           
 void endValidate()
           
 Insets getInsets()
           
 Insets insets()
           
 boolean isPaintPending()
           
 boolean isRestackSupported()
          Check if this container peer can be restacked.
 void restack()
          Restack the component peers in this container peer.
 
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

insets

Insets insets()

getInsets

Insets getInsets()

beginValidate

void beginValidate()

endValidate

void endValidate()

beginLayout

void beginLayout()

endLayout

void endLayout()

isPaintPending

boolean isPaintPending()

isRestackSupported

boolean isRestackSupported()
Check if this container peer can be restacked.

Returns:
true if this container peer supports being restacked, false otherwise
Since:
1.5

cancelPendingPaint

void cancelPendingPaint(int x,
                        int y,
                        int width,
                        int height)
Cancel a pending paint event on a region of this container.

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

restack

void restack()
Restack the component peers in this container peer.

Since:
1.5