Uses of Interface
org.apache.wicket.request.component.IRequestablePage

Packages that use IRequestablePage
org.apache.wicket The core Wicket package. 
org.apache.wicket.ajax   
org.apache.wicket.authroles.authentication.pages   
org.apache.wicket.devutils   
org.apache.wicket.devutils.diskstore   
org.apache.wicket.devutils.inspector Classes that make debugging Wicket HTML applications easier. 
org.apache.wicket.examples   
org.apache.wicket.examples.ajax.builtin   
org.apache.wicket.examples.ajax.builtin.modal   
org.apache.wicket.examples.ajax.builtin.tree   
org.apache.wicket.examples.authentication1   
org.apache.wicket.examples.authentication2   
org.apache.wicket.examples.authentication3   
org.apache.wicket.examples.authorization.pages   
org.apache.wicket.examples.captcha   
org.apache.wicket.examples.compref   
org.apache.wicket.examples.customresourceloading   
org.apache.wicket.examples.dates   
org.apache.wicket.examples.echo   
org.apache.wicket.examples.events   
org.apache.wicket.examples.forminput   
org.apache.wicket.examples.frames   
org.apache.wicket.examples.hangman   
org.apache.wicket.examples.hellobrowser   
org.apache.wicket.examples.helloworld   
org.apache.wicket.examples.library   
org.apache.wicket.examples.linkomatic   
org.apache.wicket.examples.niceurl   
org.apache.wicket.examples.niceurl.mounted   
org.apache.wicket.examples.repeater   
org.apache.wicket.examples.requestmapper   
org.apache.wicket.examples.requestmapper.packageMount   
org.apache.wicket.examples.source   
org.apache.wicket.examples.spring.annot.web   
org.apache.wicket.examples.spring.common.web   
org.apache.wicket.examples.stateless   
org.apache.wicket.examples.stockquote   
org.apache.wicket.examples.template.pageinheritance   
org.apache.wicket.examples.unicodeconverter   
org.apache.wicket.examples.upload   
org.apache.wicket.examples.velocity   
org.apache.wicket.examples.wizard   
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.link Link components. 
org.apache.wicket.markup.html.pages Default special purpose pages for error and feedback support. 
org.apache.wicket.mock   
org.apache.wicket.request.component   
org.apache.wicket.request.cycle   
org.apache.wicket.request.handler   
org.apache.wicket.request.handler.render   
org.apache.wicket.request.mapper   
org.apache.wicket.session   
org.apache.wicket.threadtest.apps.app1   
org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
 

Uses of IRequestablePage in org.apache.wicket
 

Classes in org.apache.wicket that implement IRequestablePage
 class Page
          Abstract base class for pages.
 

Methods in org.apache.wicket with type parameters of type IRequestablePage
<C extends IRequestablePage>
boolean
IPageFactory.isBookmarkable(java.lang.Class<C> pageClass)
          Checks whether a page can be instantiated using a bookmarkable URL.
<C extends IRequestablePage>
IRequestablePage
IPageFactory.newPage(java.lang.Class<C> pageClass)
          Creates a new page using a page class.
<C extends IRequestablePage>
IRequestablePage
IPageFactory.newPage(java.lang.Class<C> pageClass, PageParameters parameters)
          Creates a new Page, passing PageParameters to the Page constructor if such a constructor exists.
<C extends IRequestablePage>
void
Component.setResponsePage(java.lang.Class<C> cls)
          Sets the page that will respond to this request
<C extends IRequestablePage>
void
Component.setResponsePage(java.lang.Class<C> cls, PageParameters parameters)
          Sets the page class and its parameters that will respond to this request
 

Methods in org.apache.wicket that return IRequestablePage
 IRequestablePage DefaultMapperContext.getPageInstance(int pageId)
           
<C extends IRequestablePage>
IRequestablePage
IPageFactory.newPage(java.lang.Class<C> pageClass)
          Creates a new page using a page class.
<C extends IRequestablePage>
IRequestablePage
IPageFactory.newPage(java.lang.Class<C> pageClass, PageParameters parameters)
          Creates a new Page, passing PageParameters to the Page constructor if such a constructor exists.
 IRequestablePage DefaultMapperContext.newPageInstance(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
           
 

Methods in org.apache.wicket that return types with arguments of type IRequestablePage
 java.lang.Class<? extends IRequestablePage> DefaultMapperContext.getHomePageClass()
           
 

Method parameters in org.apache.wicket with type arguments of type IRequestablePage
 IRequestablePage DefaultMapperContext.newPageInstance(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
           
 

Constructors in org.apache.wicket with parameters of type IRequestablePage
RestartResponseException(IRequestablePage page)
          Redirects to the specified page
 

Uses of IRequestablePage in org.apache.wicket.ajax
 

Methods in org.apache.wicket.ajax that return types with arguments of type IRequestablePage
 java.lang.Class<? extends IRequestablePage> AjaxRequestTarget.getPageClass()
           
 

Uses of IRequestablePage in org.apache.wicket.authroles.authentication.pages
 

Classes in org.apache.wicket.authroles.authentication.pages that implement IRequestablePage
 class SignInPage
          A base class which provide standard functionality for sign in.
 class SignOutPage
          Simple sign out page.
 

Uses of IRequestablePage in org.apache.wicket.devutils
 

Classes in org.apache.wicket.devutils that implement IRequestablePage
 class DevUtilsPage
          All pages in the wicket-devutils package should extend this page so that they automatically get checked to make sure that the utilities are enabled in the application debug settings.
 

Uses of IRequestablePage in org.apache.wicket.devutils.diskstore
 

Classes in org.apache.wicket.devutils.diskstore that implement IRequestablePage
 class DiskStoreBrowserPage
          A page that shows the attributes (id, name, size) of the pages stored in the data stores.
 

Uses of IRequestablePage in org.apache.wicket.devutils.inspector
 

Classes in org.apache.wicket.devutils.inspector that implement IRequestablePage
 class InspectorPage
          A page that shows interesting attributes of the Wicket environment, including the current session and the component tree for the current page.
 class LiveSessionsPage
           
 class RequestsPage
           
 

Uses of IRequestablePage in org.apache.wicket.examples
 

Classes in org.apache.wicket.examples that implement IRequestablePage
 class WicketExamplePage
          Base class for all example pages.
 

Uses of IRequestablePage in org.apache.wicket.examples.ajax.builtin
 

Classes in org.apache.wicket.examples.ajax.builtin that implement IRequestablePage
 class AutoCompletePage
          Page that demos the ajax auto complete text field
 class BasePage
          Base page for ajax example
 class ChoicePage
          Linked select boxes example
 class ClockPage
          A simple clock example page
 class EditableLabelPage
          Page to demo the inplace edit label AjaxEditableLabel
 class EffectsPage
          Demonstrates ajax effects
 class FileUploadPage
          Demos ajax handling of a multipart form
 class FormPage
          Page to demonstrate instant ajax validaion feedback.
 class GuestBook
          Ajax enabled example for the guestbook.
 class Index
          Wicket ajax example index page
 class LazyLoadingPage
           
 class LinksPage
          Ajax links demo.
 class OnChangeAjaxBehaviorPage
           
 class PageablesPage
          Shows an ajaxian paging navigator in action.
 class RatingsPage
          Demo page for the rating component.
 class TabbedPanelPage
          Tabbed panel demo.
 class TodoList
          Ajax todo list without having to write any JavaScript yourself.
 class WorldClockPage
          A world clock example page.
 

Uses of IRequestablePage in org.apache.wicket.examples.ajax.builtin.modal
 

Classes in org.apache.wicket.examples.ajax.builtin.modal that implement IRequestablePage
 class ModalContent1Page
           
 class ModalContent2Page
           
 class ModalWindowPage
           
 

Uses of IRequestablePage in org.apache.wicket.examples.ajax.builtin.tree
 

Classes in org.apache.wicket.examples.ajax.builtin.tree that implement IRequestablePage
 class BaseTreePage
          This is a base class for all pages with tree example.
 class EditableTreeTablePage
          Page that shows a tree table with editable cells.
 class SimpleTreePage
          Page that shuws a simple tree (not a table).
 class TreeTablePage
          Page that shows a simple tree table.
 

Uses of IRequestablePage in org.apache.wicket.examples.authentication1
 

Classes in org.apache.wicket.examples.authentication1 that implement IRequestablePage
 class Home
          Simple home page, which requires authentication
 class SignIn
          Simple example of a sign in page.
 class SignOut
          Simple logout page.
 

Uses of IRequestablePage in org.apache.wicket.examples.authentication2
 

Classes in org.apache.wicket.examples.authentication2 that implement IRequestablePage
 class AuthenticatedWebPage
          Base class to check access to a page.
 class SignIn2
          Simple example of a sign in page.
 

Uses of IRequestablePage in org.apache.wicket.examples.authentication3
 

Classes in org.apache.wicket.examples.authentication3 that implement IRequestablePage
 class AdminPage
          A page only accessible by a user in the ADMIN role.
 class HomePage
          Simple home page with no authorization requirements - can be accessed by everybody.
 class MySignInPage
          Simple example of a sign in page.
 

Uses of IRequestablePage in org.apache.wicket.examples.authorization.pages
 

Classes in org.apache.wicket.examples.authorization.pages that implement IRequestablePage
 class AdminAnnotationsBookmarkablePage
          Bookmarkable page that may only be accessed by users that have role ADMIN.
 class AdminAnnotationsInternalPage
          Non-bookmarkable page that may only be accessed by users that have role ADMIN.
 class AdminBookmarkablePage
          Bookmarkable page that may only be accessed by users that have role ADMIN.
 class AdminInternalPage
          Non-bookmarkable page that may only be accessed by users that have role ADMIN.
 class AnnotationsPanelsPage
          Bookmarkable page that may only be accessed by users that have role ADMIN.
 class PanelsPage
          Bookmarkable page that may only be accessed by users that have role ADMIN.
 

Uses of IRequestablePage in org.apache.wicket.examples.captcha
 

Classes in org.apache.wicket.examples.captcha that implement IRequestablePage
 class Captcha
          Captcha example page.
 

Uses of IRequestablePage in org.apache.wicket.examples.compref
 

Classes in org.apache.wicket.examples.compref that implement IRequestablePage
 class BookmarkablePage
          Example page that cannot be bookmarked.
 class BookmarkablePageLinkPage
          Page with examples on BookmarkablePageLink.
 class BorderPage
          Page with examples on Border.
 class ButtonPage
          Page with examples on Button.
 class CheckBoxMultipleChoicePage
          Page with examples on CheckBoxMultipleChoice.
 class CheckBoxPage
          Page with examples on TextArea.
 class CheckBoxSelectorPage
          An example page for CheckBoxSelector
 class CheckGroupPage
          CheckGroup and Check components example page
 class CheckGroupPage2
          CheckGroup and Check components example page
 class DropDownChoicePage
          Page with examples on DropDownChoice.
 class ExternalLinkPage
          Page with examples on ExternalLink.
 class FragmentPage
          Page with examples on Fragment.
 class IncludePage
          Page with examples on MultiLineLabel.
 class LabelPage
          Page with examples on Label.
 class LinkPage
          Page with examples on Link.
 class ListChoicePage
          Page with examples on ListChoice.
 class ListMultipleChoicePage
          Page with examples on ListMultipleChoice.
 class MultiLineLabelPage
          Page with examples on MultiLineLabel.
 class NonBookmarkablePage
          Example page that cannot be bookmarked.
 class PageLinkPage
          Page with examples on Link.
 class PalettePage
          Palette component example
 class PanelPage
          Page with examples on Panel.
 class RadioChoicePage
          Page with examples on ListChoice.
 class RadioGroupPage
          RadioGroup and Radio components example page
 class RadioGroupPage2
          RadioGroup and Radio components example page
 class SelectPage
          Page with examples on Select.
 class SubmitLinkPage
          Page with examples on Form.
 class TextAreaPage
          Page with examples on TextArea.
 class TextFieldPage
          Page with examples on TextField.
 class XmlPage
          Look ma, you can use plain XML too with Wicket.
 

Uses of IRequestablePage in org.apache.wicket.examples.customresourceloading
 

Classes in org.apache.wicket.examples.customresourceloading that implement IRequestablePage
 class AlternativePageFromWebContext
          The markup for this page is loaded from the web context by a custom IResourceStreamLocator locator set in CustomResourceLoadingApplication.
 class PageFromWebContext
          The markup for this page is loaded from the web context by a custom IResourceStreamLocator locator set in CustomResourceLoadingApplication.
 class PageWithCustomLoading
          The markup for this page is loaded by the Page component itself.
 

Uses of IRequestablePage in org.apache.wicket.examples.dates
 

Classes in org.apache.wicket.examples.dates that implement IRequestablePage
 class DatesPage
          Demonstrates components from the wicket-date project and a bunch of locale fiddling.
 

Uses of IRequestablePage in org.apache.wicket.examples.echo
 

Classes in org.apache.wicket.examples.echo that implement IRequestablePage
 class Echo
          The simplest form application possible.
 

Uses of IRequestablePage in org.apache.wicket.examples.events
 

Classes in org.apache.wicket.examples.events that implement IRequestablePage
 class DecoupledAjaxUpdatePage
           
 class IndexPage
           
 

Uses of IRequestablePage in org.apache.wicket.examples.forminput
 

Classes in org.apache.wicket.examples.forminput that implement IRequestablePage
 class FormInput
          Example for form input.
 

Uses of IRequestablePage in org.apache.wicket.examples.frames
 

Classes in org.apache.wicket.examples.frames that implement IRequestablePage
 class BodyFrame
          Body frame page for the frames example.
 class LeftFrame
          The left frame.
 class Page1
          Test page for the right frame.
 class Page2
          Test page for the right frame.
 class TopFrame
          Top frame for navigation.
 

Uses of IRequestablePage in org.apache.wicket.examples.hangman
 

Classes in org.apache.wicket.examples.hangman that implement IRequestablePage
 class Guess
          The main guess page for the hangman application.
 class HangmanPage
          Session for hangman game.
 class Lose
          Page that handles the loser failing to guess the word.
 class Win
          Page called when the user has correctly guessed the word.
 

Uses of IRequestablePage in org.apache.wicket.examples.hellobrowser
 

Classes in org.apache.wicket.examples.hellobrowser that implement IRequestablePage
 class HelloBrowser
          Client snooping page.
 

Uses of IRequestablePage in org.apache.wicket.examples.helloworld
 

Classes in org.apache.wicket.examples.helloworld that implement IRequestablePage
 class HelloWorld
          Everybody's favorite example!
 

Uses of IRequestablePage in org.apache.wicket.examples.library
 

Classes in org.apache.wicket.examples.library that implement IRequestablePage
 class BookDetails
          A book details page.
 class EditBook
          A page that contains a form that allows editing of books.
 

Uses of IRequestablePage in org.apache.wicket.examples.linkomatic
 

Classes in org.apache.wicket.examples.linkomatic that implement IRequestablePage
 class Page3
          Trivial page.
 class Popup
          Trivial popup page.
 

Uses of IRequestablePage in org.apache.wicket.examples.niceurl
 

Classes in org.apache.wicket.examples.niceurl that implement IRequestablePage
 class Page2QP
          Simple bookmarkable page that displays page parameters which is mounted with another parameter encoder.
 

Uses of IRequestablePage in org.apache.wicket.examples.niceurl.mounted
 

Classes in org.apache.wicket.examples.niceurl.mounted that implement IRequestablePage
 class Page4
          Simple bookmarkable page.
 class Page5
          Simple bookmarkable page that displays page parameters.
 

Uses of IRequestablePage in org.apache.wicket.examples.repeater
 

Classes in org.apache.wicket.examples.repeater that implement IRequestablePage
 class AjaxDataTablePage
           
 class DataGridPage
          demo page for the datatable component
 class DataTablePage
          demo page for the datatable component
 class ExamplePage
          Base class for all pages in the QuickStart application.
 class GridViewPage
          page for demonstrating the gridview component
 class OIRPage
          page that demonstrates dataview with ReuseIfModelsEqualStrategy
 class PagingPage
          Page that demonstrates a paging dataview
 class RefreshingPage
          page that demonstrates a RefreshingView
 class RepeatingPage
          page that demonstrates a simple repeater view.
 class SimplePage
          Page that demonstrates a simple dataview.
 class SortingPage
          page that demonstrates dataview and sorting
 

Uses of IRequestablePage in org.apache.wicket.examples.requestmapper
 

Classes in org.apache.wicket.examples.requestmapper that implement IRequestablePage
 class HttpsPage
          This page is just to demonstrate how HttpsMapper works.
Since the demo web servers usually are not configured with https support the page itself will be never rendered.
 class LocalizedPage
           
 class RequestMapperHomePage
           
 

Uses of IRequestablePage in org.apache.wicket.examples.requestmapper.packageMount
 

Classes in org.apache.wicket.examples.requestmapper.packageMount that implement IRequestablePage
 class PackageMountedPage
           
 

Uses of IRequestablePage in org.apache.wicket.examples.source
 

Classes in org.apache.wicket.examples.source that implement IRequestablePage
 class SourcesPage
          Displays the resources in a packages directory in a browsable format.
 

Uses of IRequestablePage in org.apache.wicket.examples.spring.annot.web
 

Classes in org.apache.wicket.examples.spring.annot.web that implement IRequestablePage
 class AnnotPage
           
 

Uses of IRequestablePage in org.apache.wicket.examples.spring.common.web
 

Classes in org.apache.wicket.examples.spring.common.web that implement IRequestablePage
 class ContactsDisplayPage
          Base class for the contact display page.
 

Uses of IRequestablePage in org.apache.wicket.examples.stateless
 

Classes in org.apache.wicket.examples.stateless that implement IRequestablePage
 class StatefulPage
          Another page of the stateless example.
 class StatelessPage
          Another page of the stateless example.
 class StatelessPage1
          Another page of the stateless example.
 class StatelessPage2
          Another page of the stateless example.
 class StatelessPage3
          Another page of the stateless example.
 

Uses of IRequestablePage in org.apache.wicket.examples.stockquote
 

Classes in org.apache.wicket.examples.stockquote that implement IRequestablePage
 class StockQuotePage
          Stock quote webservice custom component example.
 

Uses of IRequestablePage in org.apache.wicket.examples.template.pageinheritance
 

Classes in org.apache.wicket.examples.template.pageinheritance that implement IRequestablePage
 class TemplatePage
          Base page that serves as a template for pages that inherit from it.
 

Uses of IRequestablePage in org.apache.wicket.examples.unicodeconverter
 

Classes in org.apache.wicket.examples.unicodeconverter that implement IRequestablePage
 class UnicodeConverter
          Converts between unescaped and escaped unicode and shows a custom model.
 

Uses of IRequestablePage in org.apache.wicket.examples.upload
 

Classes in org.apache.wicket.examples.upload that implement IRequestablePage
 class MultiUploadPage
          Upload example.
 class UploadPage
          Upload example.
 

Uses of IRequestablePage in org.apache.wicket.examples.velocity
 

Classes in org.apache.wicket.examples.velocity that implement IRequestablePage
 class DynamicPage
          Template example page.
 

Uses of IRequestablePage in org.apache.wicket.examples.wizard
 

Classes in org.apache.wicket.examples.wizard that implement IRequestablePage
 class WizardPage
          Page for displaying a wizard.
 

Uses of IRequestablePage in org.apache.wicket.markup.html
 

Classes in org.apache.wicket.markup.html that implement IRequestablePage
 class GenericWebPage<T>
          A WebPage with typesafe getters and setters for the model and its underlying object
 class WebPage
          Base class for HTML pages.
 

Uses of IRequestablePage in org.apache.wicket.markup.html.link
 

Classes in org.apache.wicket.markup.html.link that implement IRequestablePage
static class PopupCloseLink.ClosePopupPage
          ClosePopupPage closes the popup window.
 

Uses of IRequestablePage in org.apache.wicket.markup.html.pages
 

Classes in org.apache.wicket.markup.html.pages that implement IRequestablePage
 class AbstractErrorPage
          A parent page for all pages that are used to show an error to the user.
 class AccessDeniedPage
          Page expired error page.
 class BrowserInfoPage
           This page uses a form post right after the page has loaded in the browser, using JavaScript or alternative means to detect and pass on settings to the embedded form.
 class ExceptionErrorPage
          Shows a runtime exception on a nice HTML page.
 class InternalErrorPage
          Internal error display page.
 class PageExpiredErrorPage
          Page expired error page.
 class RedirectPage
          Page that let the browser redirect.
 

Uses of IRequestablePage in org.apache.wicket.mock
 

Classes in org.apache.wicket.mock that implement IRequestablePage
 class MockHomePage
          Mock Page
 

Uses of IRequestablePage in org.apache.wicket.request.component
 

Methods in org.apache.wicket.request.component that return IRequestablePage
 IRequestablePage IRequestableComponent.getPage()
          Returns page this component belongs to.
 

Uses of IRequestablePage in org.apache.wicket.request.cycle
 

Methods in org.apache.wicket.request.cycle with parameters of type IRequestablePage
 void RequestCycle.setResponsePage(IRequestablePage page)
          Convenience method for setting next page to be rendered.
 

Method parameters in org.apache.wicket.request.cycle with type arguments of type IRequestablePage
 void RequestCycle.setResponsePage(java.lang.Class<? extends IRequestablePage> pageClass)
          Convenience method for setting next page to be rendered.
 void RequestCycle.setResponsePage(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters parameters)
          Convenience method for setting next page to be rendered.
 

Uses of IRequestablePage in org.apache.wicket.request.handler
 

Methods in org.apache.wicket.request.handler that return IRequestablePage
 IRequestablePage RenderPageRequestHandler.getPage()
          Returns the page.
 IRequestablePage ListenerInterfaceRequestHandler.getPage()
           
 IRequestablePage IPageRequestHandler.getPage()
          Returns the page.
 IRequestablePage BookmarkableListenerInterfaceRequestHandler.getPage()
           
 IRequestablePage PageProvider.getPageInstance()
           
 IRequestablePage IPageProvider.getPageInstance()
          Returns page instance specified by the constructor.
 

Methods in org.apache.wicket.request.handler that return types with arguments of type IRequestablePage
 java.lang.Class<? extends IRequestablePage> RenderPageRequestHandler.getPageClass()
          Returns the page class
 java.lang.Class<? extends IRequestablePage> PageProvider.getPageClass()
           
 java.lang.Class<? extends IRequestablePage> ListenerInterfaceRequestHandler.getPageClass()
           
 java.lang.Class<? extends IRequestablePage> IPageProvider.getPageClass()
          Returns class of the page.
 java.lang.Class<? extends IRequestablePage> IPageClassRequestHandler.getPageClass()
          Returns the page class
 java.lang.Class<? extends IRequestablePage> BookmarkablePageRequestHandler.getPageClass()
           
 java.lang.Class<? extends IRequestablePage> BookmarkableListenerInterfaceRequestHandler.getPageClass()
           
 

Constructors in org.apache.wicket.request.handler with parameters of type IRequestablePage
PageAndComponentProvider(IRequestablePage page, IRequestableComponent component)
           
PageAndComponentProvider(IRequestablePage page, java.lang.String componentPath)
           
PageProvider(IRequestablePage page)
          Creates a new page provider object.
 

Constructor parameters in org.apache.wicket.request.handler with type arguments of type IRequestablePage
PageAndComponentProvider(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters, java.lang.String componentPath)
           
PageAndComponentProvider(java.lang.Class<? extends IRequestablePage> pageClass, java.lang.String componentPath)
           
PageAndComponentProvider(int pageId, java.lang.Class<? extends IRequestablePage> pageClass, java.lang.Integer renderCount, java.lang.String componentPath)
           
PageAndComponentProvider(int pageId, java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters, java.lang.Integer renderCount, java.lang.String componentPath)
           
PageProvider(java.lang.Class<? extends IRequestablePage> pageClass)
          Creates a new page provider object.
PageProvider(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
          Creates a new page provider object.
PageProvider(int pageId, java.lang.Class<? extends IRequestablePage> pageClass, java.lang.Integer renderCount)
          Creates a new page provider object.
PageProvider(int pageId, java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters, java.lang.Integer renderCount)
          Creates a new page provider object.
 

Uses of IRequestablePage in org.apache.wicket.request.handler.render
 

Methods in org.apache.wicket.request.handler.render that return IRequestablePage
protected  IRequestablePage PageRenderer.getPage()
           
 

Uses of IRequestablePage in org.apache.wicket.request.mapper
 

Methods in org.apache.wicket.request.mapper that return IRequestablePage
 IRequestablePage StalePageException.getPage()
           
 IRequestablePage IPageSource.getPageInstance(int pageId)
          Returns existing page instance if the page exists.
 IRequestablePage IPageSource.newPageInstance(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
          Creates new page instance of page with given class.
 

Methods in org.apache.wicket.request.mapper that return types with arguments of type IRequestablePage
 java.lang.Class<? extends IRequestablePage> IMapperContext.getHomePageClass()
          Returns the home page class.
 java.lang.Class<? extends IRequestablePage> AbstractBookmarkableMapper.UrlInfo.getPageClass()
           
protected  java.lang.Class<? extends IRequestablePage> AbstractComponentMapper.getPageClass(java.lang.String name)
          Loads page class with given name.
 

Method parameters in org.apache.wicket.request.mapper with type arguments of type IRequestablePage
protected  boolean MountedMapper.checkPageClass(java.lang.Class<? extends IRequestablePage> pageClass)
           
protected  boolean AbstractBookmarkableMapper.checkPageClass(java.lang.Class<? extends IRequestablePage> pageClass)
           
 IRequestablePage IPageSource.newPageInstance(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
          Creates new page instance of page with given class.
protected  IRequestHandler AbstractBookmarkableMapper.processBookmarkable(java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
          Creates a IRequestHandler that processes a bookmarkable request.
protected  IRequestHandler AbstractBookmarkableMapper.processHybrid(PageInfo pageInfo, java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters, java.lang.Integer renderCount)
          Creates a IRequestHandler that processes a hybrid request.
protected  IRequestHandler AbstractBookmarkableMapper.processListener(PageComponentInfo pageComponentInfo, java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
          Creates a IRequestHandler that processes a listener request.
 

Constructors in org.apache.wicket.request.mapper with parameters of type IRequestablePage
StalePageException(IRequestablePage page)
          Construct.
 

Constructor parameters in org.apache.wicket.request.mapper with type arguments of type IRequestablePage
AbstractBookmarkableMapper.UrlInfo(PageComponentInfo pageComponentInfo, java.lang.Class<? extends IRequestablePage> pageClass, PageParameters pageParameters)
          Construct.
HomePageMapper(java.lang.Class<? extends IRequestablePage> pageClass)
          Construct.
HomePageMapper(java.lang.Class<? extends IRequestablePage> pageClass, IPageParametersEncoder pageParametersEncoder)
          Construct.
HomePageMapper(ClassProvider<? extends IRequestablePage> pageClassProvider)
          Construct.
HomePageMapper(ClassProvider<? extends IRequestablePage> pageClassProvider, IPageParametersEncoder pageParametersEncoder)
          Construct.
MountedMapper(java.lang.String mountPath, java.lang.Class<? extends IRequestablePage> pageClass)
          Construct.
MountedMapper(java.lang.String mountPath, java.lang.Class<? extends IRequestablePage> pageClass, IPageParametersEncoder pageParametersEncoder)
          Construct.
MountedMapper(java.lang.String mountPath, ClassProvider<? extends IRequestablePage> pageClassProvider)
          Construct.
MountedMapper(java.lang.String mountPath, ClassProvider<? extends IRequestablePage> pageClassProvider, IPageParametersEncoder pageParametersEncoder)
          Construct.
 

Uses of IRequestablePage in org.apache.wicket.session
 

Methods in org.apache.wicket.session with type parameters of type IRequestablePage
<C extends IRequestablePage>
boolean
DefaultPageFactory.isBookmarkable(java.lang.Class<C> pageClass)
           
<C extends IRequestablePage>
Page
DefaultPageFactory.newPage(java.lang.Class<C> pageClass)
           
<C extends IRequestablePage>
Page
DefaultPageFactory.newPage(java.lang.Class<C> pageClass, PageParameters parameters)
           
 

Uses of IRequestablePage in org.apache.wicket.threadtest.apps.app1
 

Classes in org.apache.wicket.threadtest.apps.app1 that implement IRequestablePage
 class ResourceTestPage
          Web page with 50 dynamically-created image resources.
 

Uses of IRequestablePage in org.apache.wicket.util.tester
 

Classes in org.apache.wicket.util.tester that implement IRequestablePage
static class BaseWicketTester.StartComponentInPage
          A page that is used as the automatically created page for BaseWicketTester.startComponentInPage(Class) and the other variations.
 class DummyHomePage
          A dummy home page, as required by WicketTester.
 class DummyPanelPage
          A dummy Panel Component.
 



Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.