* replaced by <code>getInsets()</code>.
*/
public Insets insets() {
if (this.peer != null && this.peer instanceof ContainerPeer) {
ContainerPeer peer = (ContainerPeer)this.peer;
return (Insets)peer.insets().clone();
}
return new Insets(0, 0, 0, 0);
}
/**