*/
public class BaseWebPage extends net.sf.wicketdemo.common.BaseWebPage {
@Override
protected void addPageLinks(final List<PageLink> pageLinks) {
pageLinks.add(new PageLink("Application Configuration", ApplicationConfigurationPage.class));
pageLinks.add(new PageLink("Detect Client Capabilities", DetectClientCapabilitiesPage.class));
pageLinks.add(new PageLink("Lists", ListsPage.class));
pageLinks.add(new PageLink("Test Form", TestFormPage.class));
pageLinks.add(new PageLink("HelloWorld", HelloWorld.class));
pageLinks.add(new PageLink("LinkCounter", LinkCounter.class));
pageLinks.add(new PageLink("LinkCounter (Ajax)", LinkCounterAjax.class));
pageLinks.add(new PageLink("Simple Form", SimpleFormPage.class));
pageLinks.add(new PageLink("Form with dropdown", DropDownPage.class));
pageLinks.add(new PageLink("Basic Reusable Component", BasicComponentPage.class));
pageLinks.add(new PageLink("Single Author Reusable Component", SingleAuthorBookPage.class));
pageLinks.add(new PageLink("Multi Author Reusable Component", MultiAuthorBookPage.class));
}