01: package wicket.quickstart;
02:
03: import wicket.PageParameters;
04:
05: /**
06: * Basic bookmarkable index page.
07: *
08: * NOTE: You can get session properties from QuickStartSession via getQuickStartSession()
09: */
10: public class Index extends QuickStartPage {
11: // TODO Add any page properties or variables here
12:
13: /**
14: * Constructor that is invoked when page is invoked without a session.
15: *
16: * @param parameters
17: * Page parameters
18: */
19: public Index(final PageParameters parameters) {
20: // TODO Add your page's components here
21: }
22: }
|