java.awt.peer
Interface ContainerPeer

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

public interface ContainerPeer
extends ComponentPeer

Disabled: no SafeJ information.

The peer interface for Container. This is the parent interface for all container like widgets. 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()
          Notifies the peer that layout is about to begin.
 void beginValidate()
          Notifies the peer that validation of the component tree is about to begin.
 void endLayout()
          Notifies the peer that layout is finished.
 void endValidate()
          Notifies the peer that validation of the component tree is finished.
 Insets getInsets()
          Returns the insets of this container.
 
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, setZOrder, updateCursorImmediately, updateGraphicsData
 

Method Detail

getInsets

Insets getInsets()
Class is disabled.

Returns the insets of this container. Insets usually is the space that is occupied by things like borders.

Returns:
the insets of this container

beginValidate

void beginValidate()
Class is disabled.

Notifies the peer that validation of the component tree is about to begin.

See Also:
Container.validate()

endValidate

void endValidate()
Class is disabled.

Notifies the peer that validation of the component tree is finished.

See Also:
Container.validate()

beginLayout

void beginLayout()
Class is disabled.

Notifies the peer that layout is about to begin. This is called before the container itself and its children are laid out.

See Also:
Container.validateTree()

endLayout

void endLayout()
Class is disabled.

Notifies the peer that layout is finished. This is called after the container and its children have been laid out.

See Also:
Container.validateTree()