| java.lang.Object org.wings.SAbstractLayoutManager org.wings.SCardLayout
SCardLayout | public SCardLayout()(Code) | | Creates a new card layout
|
checkLayout | void checkLayout(SContainer parent)(Code) | | Make sure that the Container really has a CardLayout installed.
Otherwise havoc can ensue!
|
first | public void first(SContainer parent)(Code) | | Flips to the first card of the container.
Parameters: parent - the name of the parent containerin which to do the layout. |
getVisibleConstraint | public Object getVisibleConstraint()(Code) | | |
last | public void last(SContainer parent)(Code) | | Flips to the last card of the container.
Parameters: parent - the name of the parent containerin which to do the layout. |
next | public void next(SContainer parent)(Code) | | Flips to the next card of the specified container. If the
currently visible card is the last one, this method flips to the
first card in the layout.
Parameters: parent - the name of the parent containerin which to do the layout. |
previous | public void previous(SContainer parent)(Code) | | Flips to the previous card of the specified container. If the
currently visible card is the first one, this method flips to the
last card in the layout.
Parameters: parent - the name of the parent containerin which to do the layout. |
show | public void show(Object constraint)(Code) | | Flips to the component
|
show | public void show(SContainer parent, Object name)(Code) | | Flips to the component that was added to this layout with the
specified name , using addLayoutComponent .
If no such component exists, then nothing happens.
Parameters: parent - the name of the parent containerin which to do the layout. Parameters: name - the component name. |
|
|