Package net.sf.wicketdemo.common

Examples of net.sf.wicketdemo.common.PageLink


  }
 
 
  @Override
  protected void addPageLinks(final List<PageLink> pageLinks) {
    pageLinks.add(new PageLink(Model.of("DataStorePage"), DataStorePage.class));
    pageLinks.add(new PageLink(Model.of("SayHiPage"), SayHiPage.class));
    pageLinks.add(new PageLink(Model.of("ToHomeDemoPage"), ToHomeDemoPage.class));
  }
View Full Code Here


*/
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));
  }
View Full Code Here

TOP

Related Classes of net.sf.wicketdemo.common.PageLink

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.