*/
public InspectorPage(final PageParameters parameters)
{
add(new ApplicationView("application", Application.get()));
add(new SessionView("session", Session.get()));
IPageMapEntry entry = null;
try
{
entry = getPageMap().getEntry(parameters.getInt("pageId"));
}
catch (StringValueConversionException e)
{
// Ignore
}
add(new PageView("page", entry == null ? null : entry.getPage()));
add(new Image<Void>("bug"));
add(new BookmarkablePageLink("allsessions", LiveSessionsPage.class));
add(new Label<String>("wicketVersion", getApplication().getFrameworkSettings().getVersion()));
}