Sharkysoft home

lava.gui
Interface LayoutListener


public interface LayoutListener

Receives notification when LayoutManagers lay out their containers.

Details: A LayoutListener can receive notification from LayoutManagers when the LayoutManager's Containers request their Components to be laid out. To receive these notices, the LayoutListener must be registered with a LayoutManager that provides these notifications, such as a ProxyLayoutManager.

clip source for interface lava.gui.LayoutListener

Since:
1999.06.09
Author:
Sharky

Method Summary
 void laidOutContainer(java.awt.Container c)
          Called by LayoutManager after processing doLayout call.
 

Method Detail

laidOutContainer

public void laidOutContainer(java.awt.Container c)
Called by LayoutManager after processing doLayout call.

Details: LayoutManagers that support LayoutListeners call laidOutContainer after processing a doLayout call.

Parameters:
c - the Container that was laid out
Since:
1999.06.09

Sharkysoft home