A link to a bookmarkable page can be built with the link component @org.apache.wicket.markup.html.link.BookmarkablePageLink@: | |
{code} | |
BookmarkablePageLink bpl=new BookmarkablePageLink(PageWithParameters.class, pageParameters); | |
{code} | |
The specific purpose of this component is to provide an anchor to a bookmarkable page, hence we don't have to implement any abstract method like we do with Link component. |