Class FlowLayout
- java.lang.Object
-
- org.wicketstuff.minis.behavior.apanel.FlowLayout
-
- All Implemented Interfaces:
Serializable,ILayout
public class FlowLayout extends Object implements ILayout
Layout that only concatenates markup for components.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FlowLayout()Constructor.FlowLayout(List<IComponentRenderer<?>> renderers)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidonAfterTag(Component component, StringBuilder stringBuilder)protected voidonBeforeTag(Component component, StringBuilder stringBuilder)CharSequencerenderComponents(List<? extends Component> components)Creates wicket markup for components, adding markup specific for this layout.
-
-
-
Constructor Detail
-
FlowLayout
public FlowLayout()
Constructor.
-
FlowLayout
public FlowLayout(List<IComponentRenderer<?>> renderers)
Constructor.- Parameters:
renderers- list of renderers to customize component rendering in this layout
-
-
Method Detail
-
onAfterTag
protected void onAfterTag(Component component, StringBuilder stringBuilder)
-
onBeforeTag
protected void onBeforeTag(Component component, StringBuilder stringBuilder)
-
renderComponents
public CharSequence renderComponents(List<? extends Component> components)
Description copied from interface:ILayoutCreates wicket markup for components, adding markup specific for this layout.- Specified by:
renderComponentsin interfaceILayout- Parameters:
components- components to render- Returns:
- wicket markup
- See Also:
ILayout.renderComponents(java.util.List)
-
-