Interface ILayout
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
FlowLayout,GridLayout
public interface ILayout extends Serializable
Layout is responsible for creating wicket markup for a group of components.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CharSequencerenderComponents(List<? extends Component> components)Creates wicket markup for components, adding markup specific for this layout.
-
-
-
Method Detail
-
renderComponents
CharSequence renderComponents(List<? extends Component> components)
Creates wicket markup for components, adding markup specific for this layout.- Parameters:
components- components to render- Returns:
- wicket markup
-
-