ContainerPeer is an interface that defines the basis for containers.
public abstract interface java.awt.peer.ContainerPeer extends java.awt.peer.ComponentPeer { // Interface Methods public abstract void beginValidate(); public abstract void endValidate(); public abstract Insets getInsets(); public abstract Insets insets(); }
Notifies the peer that the Container is going to validate its contents.
Notifies the peer that the Container is finished validating its contents.
Current Insets of container's peer.
Current Insets of container's peer. Replaced by getInsets().
ComponentPeer, Insets, PanelPeer, ScrollPanePeer, WindowPeer