Package com.wiquery.plugins.demo

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

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 ResizablePage extends BasePage {

  private static final long serialVersionUID = 1L;

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

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

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.