net.miginfocom.layout
public interface ContainerWrapper extends ComponentWrapper
Method Summary | |
---|---|
abstract int | getComponentCount() Returns the number of components that this parent has. |
abstract ComponentWrapper[] | getComponents() Returns the components of the container that wrapper is wrapping. |
abstract Object | getLayout() Returns the LayoutHandler (in Swing terms) that is handling the layout of this container.
|
abstract boolean | isLeftToRight() Returns if this container is using left-to-right component ordering. |
abstract void | paintDebugCell(int x, int y, int width, int height) Paints a cell to indicate where it is. |
Returns: The number of components that this parent has.
Returns: The components of the container that wrapper is wrapping. Never null
.
LayoutHandler
(in Swing terms) that is handling the layout of this container.
If there exist no such class the method should return the same as ContainerWrapper, which is the
container itself.Returns: The layout handler instance. Never null
.
Returns: If this container is using left-to-right component ordering.
Parameters: x The x coordinate to start the drwaing. y The x coordinate to start the drwaing. width The width to draw/fill height The height to draw/fill