Interface IComponentRenderer<T extends Component>
-
- All Superinterfaces:
Serializable
public interface IComponentRenderer<T extends Component> extends Serializable
Renderer creates wicket markup for a component.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<T>getComponentClass()CharSequencegetMarkup(T component)Creates wicket markup for a specified component.
-
-
-
Method Detail
-
getMarkup
CharSequence getMarkup(T component)
Creates wicket markup for a specified component.- Parameters:
component- component (generic parameter is used only for convenience of this method implementation)- Returns:
- wicket markup
-
-