01: /*
02: * $Id: Page3.java 460265 2006-04-16 13:36:52Z jdonnerstag $ $Revision: 460265 $ $Date:
03: * 2005-12-11 00:38:17 +0100 (So, 11 Dez 2005) $
04: *
05: * ==================================================================== Licensed
06: * under the Apache License, Version 2.0 (the "License"); you may not use this
07: * file except in compliance with the License. You may obtain a copy of the
08: * License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15: * License for the specific language governing permissions and limitations under
16: * the License.
17: */
18: package wicket.examples.niceurl.mounted;
19:
20: import wicket.PageParameters;
21: import wicket.examples.WicketExamplePage;
22: import wicket.examples.niceurl.Home;
23: import wicket.markup.html.link.BookmarkablePageLink;
24:
25: /**
26: * Simple bookmarkable page.
27: *
28: * @author Eelco Hillenius
29: */
30: public class Page3 extends WicketExamplePage {
31: /**
32: * Constructor
33: *
34: * @param parameters
35: */
36: public Page3(PageParameters parameters) {
37: add(new BookmarkablePageLink("homeLink", Home.class));
38: }
39: }
|