*
* @return the title tag value
*/
public String getTitle()
{
ExamplePage examplePage = getClass().getAnnotation(ExamplePage.class);
if (examplePage != null)
return examplePage.title() + " — Apache Wicket Examples";
return "Apache Wicket Examples";
}