Java Code Examples for org.apache.wicket.Component#render()

The following examples show how to use org.apache.wicket.Component#render() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractRepeater2.java    From pm-wicket-utils with GNU Lesser General Public License v3.0 2 votes vote down vote up
/**
 * Render a single child. This method can be overridden to modify how a single child component
 * is rendered.
 * 
 * @param child
 *            Child component to be rendered
 */
protected void renderChild(final Component child)
{
	child.render();
}