Package com.wiquery.plugins.demo

Source Code of com.wiquery.plugins.demo.LayoutPage

package com.wiquery.plugins.demo;

import java.util.List;

import org.apache.wicket.markup.html.panel.Panel;

import com.wiquery.plugins.demo.code.SourceInfo;
import com.wiquery.plugins.demo.code.SourceInfo.FORMAT;

/**
* Homepage
*/
public class LayoutPage extends BasePage {

  private static final long serialVersionUID = 1L;

  /**
   * Constructor that is invoked when page is invoked without a session.
   *
   * @param parameters
   *            Page parameters
   */
    public LayoutPage() {
        super();
    }
   
    @Override
    protected Panel getLayoutCenterComponent(String wicketId) {
      return new LayoutPanel(wicketId);
    }
   
    @Override
    protected void addSourceCode(List<SourceInfo> codeInfos) {
      codeInfos.add(new SourceInfo(LayoutPage.class));
      codeInfos.add(new SourceInfo(LayoutPanel.class));
    codeInfos.add(new SourceInfo(LayoutPanel.class, FORMAT.HTML, "LayoutPanel.html", "LayoutPanel.html"));
    }
}
TOP

Related Classes of com.wiquery.plugins.demo.LayoutPage

TOP
Copyright © 2018 www.massapi.com. 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.