SWING: LayoutManager2 Interface Cheat Sheet

Following is the declaration for java.awt.LayoutManager2 interface

public interface LayoutManger2
   extends LayoutManager

# Methods

void addLayoutComponent(Component comp, Object constraints)Adds the specified component to the layout, using the specified constraint object.
float getLayoutAlignmentX(Container target)Returns the alignment along the x axis.
float getLayoutAlignmentY(Container target)Returns the alignment along the y axis.
void invalidateLayout(Container target)Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
Dimension maximumLayoutSize(Container target)Calculates the maximum size dimensions for the specified container, given the components it contains.

Leave a Reply

Your email address will not be published. Required fields are marked *