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 UIEffectsPage extends BasePage {
private static final long serialVersionUID = 1L;
/**
* Constructor that is invoked when page is invoked without a session.
*
* @param parameters
* Page parameters
*/
public UIEffectsPage() {
super();
}
@Override
protected Panel getLayoutCenterComponent(String wicketId) {
return new UIEffectsPanel(wicketId);
}
@Override
protected void addSourceCode(List<SourceInfo> codeInfos) {
codeInfos.add(new SourceInfo(UIEffectsPage.class));
codeInfos.add(new SourceInfo(UIEffectsPanel.class));
codeInfos.add(new SourceInfo(UIEffectsPanel.class, FORMAT.HTML, "UIEffectsPanel.html", "UIEffectsPanel.html"));
}
}