Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public class Component extends Panel
{
	public Component()
	{
		super( "component" );
                add( new Label( "name" ), "component 1" );
	}
}

Component.html

Code Block
html
html


Component.html
<html>
<wicket:panel>
	<span wicket:id="name">component name</span>
</wicket:panel>
</html>