Control API for Flow Layout (flowLayout)
The flowLayout is a simple container that renders its contents without
additions. Itallows to align controls that do not need to be aligned with
other elements in an interface. Controls that are added to the flowLayout
are able to wrap if the available space for displaying all controls
in one line does not suffice.
flowLayout has no tag. It has one method getUI
which returns an identification string for the renderer that is unique
for all supported components. The following attributes are inherited from
container.
| attribute |
req. |
description |
case sens. |
classlib |
| addComponent |
no |
Adds a component to
the container.The component is added to the end of the already added
text/components.
|
yes |
addComponent ((component)
compenent) |
| addRawText |
no |
Adds text - without
encoding - to the container e.g. if HTML commands have to be added.
The text is added to the end of the already added text/components.
|
- |
addRawText(java.lang.String
text) |
| addText |
no |
Adds text encoded
to the container.The text is added to the end of the already added
text/components. |
- |
addText(java.lang.String
text) |
| removeComponent |
no |
Removes a component
from the container |
yes |
removeComponent ((component)
compenent) |
Top
|