Class AbstractLayoutManager
java.lang.Object
org.jdesktop.swingx.AbstractLayoutManager
- All Implemented Interfaces:
LayoutManager, Serializable
- Direct Known Subclasses:
HorizontalLayout, VerticalLayout
A simple abstract class to handle common layout implementations. Package-private as we do NOT
want to export this as part of the public API.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddLayoutComponent(String name, Component comp) minimumLayoutSize(Container parent) voidMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface LayoutManager
layoutContainer, preferredLayoutSize
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
AbstractLayoutManager
AbstractLayoutManager()
-
-
Method Details
-
addLayoutComponent
This implementation does nothing.
- Specified by:
addLayoutComponentin interfaceLayoutManager
-
removeLayoutComponent
This implementation does nothing.
- Specified by:
removeLayoutComponentin interfaceLayoutManager
-
minimumLayoutSize
This implementation defers to
LayoutManager.preferredLayoutSize(Container).- Specified by:
minimumLayoutSizein interfaceLayoutManager
-