Uses of Class
org.apache.wicket.Page

Packages that use Page
org.apache.wicket The core Wicket package. 
org.apache.wicket.ajax   
org.apache.wicket.authentication   
org.apache.wicket.authentication.pages   
org.apache.wicket.authorization.strategies.page   
org.apache.wicket.devutils   
org.apache.wicket.devutils.debugbar   
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.ajax.prototype   
org.apache.wicket.examples.authentication   
org.apache.wicket.examples.authorization   
org.apache.wicket.examples.authorization.pages   
org.apache.wicket.examples.breadcrumb   
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.encodings   
org.apache.wicket.examples.forminput   
org.apache.wicket.examples.frames   
org.apache.wicket.examples.guestbook   
org.apache.wicket.examples.guice   
org.apache.wicket.examples.hangman   
org.apache.wicket.examples.hellobrowser   
org.apache.wicket.examples.helloworld   
org.apache.wicket.examples.images   
org.apache.wicket.examples.kittenCaptcha   
org.apache.wicket.examples.library   
org.apache.wicket.examples.linkomatic   
org.apache.wicket.examples.navomatic   
org.apache.wicket.examples.nested   
org.apache.wicket.examples.niceurl   
org.apache.wicket.examples.niceurl.mounted   
org.apache.wicket.examples.portlet.menu   
org.apache.wicket.examples.pub   
org.apache.wicket.examples.pub2   
org.apache.wicket.examples.repeater   
org.apache.wicket.examples.signin   
org.apache.wicket.examples.signin2   
org.apache.wicket.examples.source   
org.apache.wicket.examples.stateless   
org.apache.wicket.examples.staticpages   
org.apache.wicket.examples.stockquote   
org.apache.wicket.examples.template   
org.apache.wicket.examples.unicodeconverter   
org.apache.wicket.examples.upload   
org.apache.wicket.examples.velocity   
org.apache.wicket.examples.wizard   
org.apache.wicket.extensions.ajax.markup.html.modal   
org.apache.wicket.feedback Classes related to showing user feedback, generally as the result of form submission and/or validation. 
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.debug   
org.apache.wicket.markup.html.link Link components. 
org.apache.wicket.markup.html.navigation.paging   
org.apache.wicket.markup.html.pages Default special purpose pages for error and feedback support. 
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.protocol.http.pagestore   
org.apache.wicket.protocol.http.request.urlcompressing   
org.apache.wicket.request Package for classes that have generic (protocol independent) support for request cycle processing. 
org.apache.wicket.request.target.coding Additions to request targets. 
org.apache.wicket.request.target.component   
org.apache.wicket.request.target.component.listener   
org.apache.wicket.request.target.resource   
org.apache.wicket.session   
org.apache.wicket.session.pagemap   
org.apache.wicket.settings   
org.apache.wicket.spring.annot.web   
org.apache.wicket.spring.common.web   
org.apache.wicket.threadtest.apps.app1   
org.apache.wicket.threadtest.apps.app2   
org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
org.apache.wicket.version This package contains Wicket's IPageVersionManager interface. 
org.apache.wicket.version.undo This package provides the default implementation of Wicket's back button support in the form of the ability to record and 'undo' changes to Component composition structure, IModel changes, and user-specific changes (such as the current page of pageable lists). 
 

Uses of Page in org.apache.wicket
 

Methods in org.apache.wicket with type parameters of type Page
<C extends Page>
Page
IPageFactory.newPage(Class<C> pageClass)
          Creates a new page using a page class.
<C extends Page>
Page
IPageFactory.newPage(Class<C> pageClass, PageParameters parameters)
          Creates a new Page, passing PageParameters to the Page constructor if such a constructor exists.
<T extends Page>
void
PageMap.redirectToInterceptPage(Class<T> pageClazz)
          Redirects browser to an intermediate page such as a sign-in page.
<T extends Page>
void
IPageMap.redirectToInterceptPage(Class<T> pageClazz)
          Redirects browser to an intermediate page such as a sign-in page.
<C extends Page>
void
RequestCycle.setResponsePage(Class<C> pageClass)
          Convenience method that sets page class as the response.
<C extends Page>
void
Component.setResponsePage(Class<C> cls)
          Sets the page that will respond to this request
<C extends Page>
void
RequestCycle.setResponsePage(Class<C> pageClass, PageParameters pageParameters)
          Sets the page class with optionally the page parameters as the render target of this request.
<C extends Page>
void
Component.setResponsePage(Class<C> cls, PageParameters parameters)
          Sets the page class and its parameters that will respond to this request
<C extends Page>
void
RequestCycle.setResponsePage(Class<C> pageClass, PageParameters pageParameters, String pageMapName)
          Sets the page class with optionally the page parameters and page map name as the render target of this request.
<C extends Page>
CharSequence
RequestCycle.urlFor(Class<C> pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
<C extends Page>
CharSequence
Component.urlFor(Class<C> pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
<C extends Page>
CharSequence
RequestCycle.urlFor(IPageMap pageMap, Class<C> pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
<C extends Page>
CharSequence
Component.urlFor(IPageMap pageMap, Class<C> pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
 

Methods in org.apache.wicket that return Page
protected  Page Component.findPage()
          If this Component is a Page, returns self.
abstract  Page PageMap.get(int id, int versionNumber)
           
 Page IPageMap.get(int id, int versionNumber)
          Retrieves page with given id.
 Page AccessStackPageMap.get(int id, int versionNumber)
          Retrieves page with given id.
 Page Request.getPage()
           
 Page PageReference.getPage()
           
 Page Component.getPage()
          Gets the page holding this component.
 Page Session.getPage(int pageId, int versionNumber)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 Page Session.getPage(String pageMapName, String componentPath, int versionNumber)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 Page RequestCycle.getResponsePage()
          Gets the page that is to be rendered for this request in case the last set request target is of type PageRequestTarget.
 Page Page.getVersion(int versionNumber)
          Override this method to implement a custom way of producing a version of a Page when it cannot be found in the Session.
<C extends Page>
Page
IPageFactory.newPage(Class<C> pageClass)
          Creates a new page using a page class.
<C extends Page>
Page
IPageFactory.newPage(Class<C> pageClass, PageParameters parameters)
          Creates a new Page, passing PageParameters to the Page constructor if such a constructor exists.
 Page RequestCycle.onRuntimeException(Page page, RuntimeException e)
          Template method that is called when a runtime exception is thrown, just before the actual handling of the runtime exception.
 Page Page.rollbackPage(int numberOfVersions)
          This returns a page instance that is rollbacked the number of versions that is specified compared to the current page.
 

Methods in org.apache.wicket that return types with arguments of type Page
abstract  Class<? extends Page> Application.getHomePage()
          Application subclasses must specify a home page class by implementing this abstract method.
 Class<? extends Page> Page.getPageClass()
           
 Class<? extends Page> RequestCycle.getResponsePageClass()
          Gets the page class that is to be instantiated and rendered for this request in case the last set request target is of type BookmarkablePageRequestTarget.
 

Methods in org.apache.wicket with parameters of type Page
 void Page.IPageSerializer.deserializePage(int id, String name, Page page, ObjectInputStream stream)
          Called when page is being deserialized
 Object Page.IPageSerializer.getPageReplacementObject(Page serializedPage)
          Returns object to be serialized instead of given page (called from writeReplace).
 void RequestListenerInterface.invoke(Page page, Component component)
          Invokes a given interface on a component.
 IRequestTarget RequestListenerInterface.newRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Creates a new request target for this request listener interface
 Page RequestCycle.onRuntimeException(Page page, RuntimeException e)
          Template method that is called when a runtime exception is thrown, just before the actual handling of the runtime exception.
abstract  void PageMap.put(Page page)
           
 void IPageMap.put(Page page)
           
 void AccessStackPageMap.put(Page page)
           
abstract  void RequestCycle.redirectTo(Page page)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void PageMap.redirectToInterceptPage(Page page)
          Redirects browser to an intermediate page such as a sign-in page.
 void IPageMap.redirectToInterceptPage(Page page)
          Redirects browser to an intermediate page such as a sign-in page.
 void Component.redirectToInterceptPage(Page page)
          Redirects browser to an intermediate page such as a sign-in page.
 void PageMap.remove(Page page)
           
 void IPageMap.remove(Page page)
          Removes the page from the pagemap
 void Page.IPageSerializer.serializePage(Page page, ObjectOutputStream stream)
          Called from the Component.writeObject(java.io.ObjectOutputStream) method.
 void Request.setPage(Page page)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void RequestCycle.setResponsePage(Page page)
          Sets the page as the render target of this request.
 void Component.setResponsePage(Page page)
          Sets the page that will respond to this request
 void Session.touch(Page page)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void Session.untouch(Page page)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 CharSequence RequestCycle.urlFor(Page page)
          Returns a URL that references the given page.
 

Constructors in org.apache.wicket with parameters of type Page
RestartResponseAtInterceptPageException(Page interceptPage)
          Redirects to the specified intercept page.
RestartResponseException(Page page)
          Redirects to the specified page
 

Uses of Page in org.apache.wicket.ajax
 

Methods in org.apache.wicket.ajax that return Page
 Page AjaxRequestTarget.getPage()
           
 

Constructors in org.apache.wicket.ajax with parameters of type Page
AjaxRequestTarget(Page page)
          Constructor
 

Uses of Page in org.apache.wicket.authentication
 

Methods in org.apache.wicket.authentication with parameters of type Page
protected  void AuthenticatedWebApplication.onUnauthorizedPage(Page page)
          Called when an AUTHENTICATED user tries to navigate to a page that they are not authorized to access.
 

Uses of Page in org.apache.wicket.authentication.pages
 

Subclasses of Page in org.apache.wicket.authentication.pages
 class SignInPage
          A base class which provide standard functionality for sign in.
 class SignOutPage
          Simple sign out page.
 

Uses of Page in org.apache.wicket.authorization.strategies.page
 

Methods in org.apache.wicket.authorization.strategies.page with type parameters of type Page
protected
<T extends Page>
boolean
SimplePageAuthorizationStrategy.isPageAuthorized(Class<T> pageClass)
           
protected
<T extends Page>
boolean
AbstractPageAuthorizationStrategy.isPageAuthorized(Class<T> pageClass)
          Whether to page may be created.
 

Uses of Page in org.apache.wicket.devutils
 

Subclasses of Page in org.apache.wicket.devutils
 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 Page in org.apache.wicket.devutils.debugbar
 

Methods in org.apache.wicket.devutils.debugbar that return types with arguments of type Page
protected abstract  Class<? extends Page> StandardDebugPanel.getLinkPageClass()
           
protected  Class<? extends Page> SessionSizeDebugPanel.getLinkPageClass()
           
protected  Class<? extends Page> InspectorDebugPanel.getLinkPageClass()
           
 

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

Subclasses of Page in org.apache.wicket.devutils.inspector
 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 Page in org.apache.wicket.examples
 

Subclasses of Page in org.apache.wicket.examples
 class WicketExamplePage
          Base class for all example pages.
 

Methods in org.apache.wicket.examples that return Page
 Page WicketExampleRequestCycle.onRuntimeException(Page page, RuntimeException e)
           
 

Methods in org.apache.wicket.examples with parameters of type Page
 Page WicketExampleRequestCycle.onRuntimeException(Page page, RuntimeException e)
           
 

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

Subclasses of Page in org.apache.wicket.examples.ajax.builtin
 class AutoCompletePage
          Page that demos the ajax auto complete text field
 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 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 TodoList
          Ajax todo list without having to write any JavaScript yourself.
 class WorldClockPage
          A world clock example page.
 

Methods in org.apache.wicket.examples.ajax.builtin that return types with arguments of type Page
 Class<? extends Page> AjaxApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.ajax.builtin.modal
 class ModalContent1Page
           
 class ModalContent2Page
           
 class ModalWindowPage
           
 

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

Subclasses of Page in org.apache.wicket.examples.ajax.builtin.tree
 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 Page in org.apache.wicket.examples.ajax.prototype
 

Methods in org.apache.wicket.examples.ajax.prototype that return types with arguments of type Page
 Class<? extends Page> PrototypeApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.authentication
 

Subclasses of Page in org.apache.wicket.examples.authentication
 class AdminPage
          A page only accessible by a user in the ADMIN role.
 class MySignInPage
          Simple example of a sign in page.
 class MySignOutPage
          Trivial sign out page
 

Methods in org.apache.wicket.examples.authentication that return types with arguments of type Page
 Class<? extends Page> MyAuthenticatedWebApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.authorization
 

Methods in org.apache.wicket.examples.authorization that return types with arguments of type Page
 Class<? extends Page> RolesApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.authorization.pages
 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 Page in org.apache.wicket.examples.breadcrumb
 

Methods in org.apache.wicket.examples.breadcrumb that return types with arguments of type Page
 Class<? extends Page> BreadCrumbApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.captcha
 class Captcha
          Captcha example page.
 

Methods in org.apache.wicket.examples.captcha that return types with arguments of type Page
 Class<? extends Page> CaptchaApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.compref
 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 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 FormPage
          Page with examples on Form.
 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 PageLink.
 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 TabbedPanelPage
          Reference page for TabbedPanel wicket-extensions component
 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.
 

Methods in org.apache.wicket.examples.compref that return types with arguments of type Page
 Class<? extends Page> ComponentReferenceApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.customresourceloading
 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.
 

Methods in org.apache.wicket.examples.customresourceloading that return types with arguments of type Page
 Class<? extends Page> CustomResourceLoadingApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.dates
 class DatesPage
          Demonstrates components from the wicket-date project and a bunch of locale fiddling.
 

Methods in org.apache.wicket.examples.dates that return types with arguments of type Page
 Class<? extends Page> DatesApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.echo
 class Echo
          The simplest form application possible.
 

Methods in org.apache.wicket.examples.echo that return types with arguments of type Page
 Class<? extends Page> EchoApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.encodings
 

Methods in org.apache.wicket.examples.encodings that return types with arguments of type Page
 Class<? extends Page> EncodingsApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.forminput
 class FormInput
          Example for form input.
 

Methods in org.apache.wicket.examples.forminput that return types with arguments of type Page
 Class<? extends Page> FormInputApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.frames
 class BodyFrame
          Body frame page for the frames example.
 class Home
          Home 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.
 

Methods in org.apache.wicket.examples.frames with type parameters of type Page
<C extends Page>
void
FrameTarget.setFrameClass(Class<C> frameClass)
          Sets frame class.
 

Methods in org.apache.wicket.examples.frames that return types with arguments of type Page
 Class<? extends Page> FrameTarget.getFrameClass()
          Gets frame class.
 Class<? extends Page> FramesApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.guestbook
 

Subclasses of Page in org.apache.wicket.examples.guestbook
 class GuestBook
          A simple "guest book" example that allows visitors to the page to add a comment and see the comments others have added.
 

Methods in org.apache.wicket.examples.guestbook that return types with arguments of type Page
 Class<? extends Page> GuestBookApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.guice
 

Subclasses of Page in org.apache.wicket.examples.guice
 class HomePage
          Everybody's favorite example (Hello World), modified to use Guice.
 

Methods in org.apache.wicket.examples.guice that return types with arguments of type Page
 Class<? extends Page> GuiceApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.hangman
 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.
 

Methods in org.apache.wicket.examples.hangman that return types with arguments of type Page
 Class<? extends Page> HangmanApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.hellobrowser
 class HelloBrowser
          Client snooping page.
 

Methods in org.apache.wicket.examples.hellobrowser that return types with arguments of type Page
 Class<? extends Page> HelloBrowserApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.helloworld
 class HelloWorld
          Everybody's favorite example!
 

Methods in org.apache.wicket.examples.helloworld that return types with arguments of type Page
 Class<? extends Page> HelloWorldApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.images
 

Methods in org.apache.wicket.examples.images that return types with arguments of type Page
 Class<? extends Page> ImagesApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.kittenCaptcha
 

Methods in org.apache.wicket.examples.kittenCaptcha that return types with arguments of type Page
 Class<? extends Page> WicketApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.library
 class AuthenticatedWebPage
          Ensures that user is authenticated in session.
 class EditBook
          A page that contains a form that allows editing of books.
 class SignIn
          Simple example of a sign in page.
 

Methods in org.apache.wicket.examples.library that return types with arguments of type Page
 Class<? extends Page> LibraryApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.linkomatic
 class BookDetails
          A book details page.
 class Popup
          Trivial popup page.
 

Methods in org.apache.wicket.examples.linkomatic that return types with arguments of type Page
 Class<? extends Page> LinkomaticApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.navomatic
 

Subclasses of Page in org.apache.wicket.examples.navomatic
 class Page3
          Trivial page.
 

Methods in org.apache.wicket.examples.navomatic that return types with arguments of type Page
 Class<? extends Page> NavomaticApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.nested
 

Methods in org.apache.wicket.examples.nested that return types with arguments of type Page
 Class<? extends Page> NestedApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.niceurl
 class Page2QP
          Simple bookmarkable page that displays page parameters which is mounted with another parameter encoder.
 

Methods in org.apache.wicket.examples.niceurl that return types with arguments of type Page
 Class<? extends Page> NiceUrlApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.niceurl.mounted
 class Page4
          Simple bookmarkable page.
 class Page5
          Simple bookmarkable page that displays page parameters.
 

Uses of Page in org.apache.wicket.examples.portlet.menu
 

Subclasses of Page in org.apache.wicket.examples.portlet.menu
 class EditPage
           
 class HeaderPage
           
 class MenuPage
           
 

Methods in org.apache.wicket.examples.portlet.menu that return types with arguments of type Page
 Class<? extends Page> WicketExamplesMenuApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.pub
 

Methods in org.apache.wicket.examples.pub that return types with arguments of type Page
 Class<? extends Page> PubApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.pub2
 

Methods in org.apache.wicket.examples.pub2 that return types with arguments of type Page
 Class<? extends Page> PubApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.repeater
 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 componnet
 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
 

Methods in org.apache.wicket.examples.repeater that return types with arguments of type Page
 Class<? extends Page> RepeaterApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.signin
 

Methods in org.apache.wicket.examples.signin that return types with arguments of type Page
 Class<? extends Page> SignInApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.signin2
 

Subclasses of Page in org.apache.wicket.examples.signin2
 class SignIn2
          Simple example of a sign in page.
 class SignOut
          Simple logout page.
 

Methods in org.apache.wicket.examples.signin2 that return types with arguments of type Page
 Class<? extends Page> SignIn2Application.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.source
 class SourcesPage
          Displays the resources in a packages directory in a browsable format.
 

Methods in org.apache.wicket.examples.source with parameters of type Page
static PageParameters SourcesPage.generatePageParameters(Page page)
           
 

Method parameters in org.apache.wicket.examples.source with type arguments of type Page
static PageParameters SourcesPage.generatePageParameters(Class<? extends Page> clazz, String fileName)
           
 

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

Subclasses of Page in org.apache.wicket.examples.stateless
 class Index
          Index page of the stateless example.
 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.
 

Methods in org.apache.wicket.examples.stateless that return types with arguments of type Page
 Class<? extends Page> StatelessApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.staticpages
 

Subclasses of Page in org.apache.wicket.examples.staticpages
 class EmailPage
           
 class Page
           
 class Sent
           
 

Methods in org.apache.wicket.examples.staticpages that return types with arguments of type Page
 Class<? extends Page> Application.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.stockquote
 class StockQuotePage
          Stock quote webservice custom component example.
 

Methods in org.apache.wicket.examples.stockquote that return types with arguments of type Page
 Class<? extends Page> StockQuoteApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.examples.template
 

Methods in org.apache.wicket.examples.template that return types with arguments of type Page
 Class<? extends Page> TemplateApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.unicodeconverter
 class UnicodeConverter
          Converts between unescaped and escaped unicode and shows a custom model.
 

Methods in org.apache.wicket.examples.unicodeconverter that return types with arguments of type Page
 Class<? extends Page> UnicodeConverterApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.upload
 class MultiUploadPage
          Upload example.
 class UploadPage
          Upload example.
 

Methods in org.apache.wicket.examples.upload that return types with arguments of type Page
 Class<? extends Page> UploadApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.velocity
 class DynamicPage
          Template example page.
 class TemplatePage
          Template example page.
 

Methods in org.apache.wicket.examples.velocity that return types with arguments of type Page
 Class<? extends Page> VelocityTemplateApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.wizard
 class WizardPage
          Page for displaying a wizard.
 

Methods in org.apache.wicket.examples.wizard that return types with arguments of type Page
 Class<? extends Page> WizardApplication.getHomePage()
           
 

Uses of Page in org.apache.wicket.extensions.ajax.markup.html.modal
 

Methods in org.apache.wicket.extensions.ajax.markup.html.modal that return Page
 Page ModalWindow.PageCreator.createPage()
          Creates a new instance of content page.
 

Uses of Page in org.apache.wicket.feedback
 

Constructors in org.apache.wicket.feedback with parameters of type Page
FeedbackMessagesModel(Page page, IFeedbackMessageFilter filter)
          Constructor.
 

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

Subclasses of Page in org.apache.wicket.markup.html
 class WebPage
          Base class for HTML pages.
 

Uses of Page in org.apache.wicket.markup.html.debug
 

Constructors in org.apache.wicket.markup.html.debug with parameters of type Page
PageView(String id, Page page)
          Constructor.
 

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

Subclasses of Page in org.apache.wicket.markup.html.link
static class PopupCloseLink.ClosePopupPage
          ClosePopupPage closes the popup window.
 

Methods in org.apache.wicket.markup.html.link that return Page
 Page IPageLink.getPage()
          Gets the page to go to.
 

Methods in org.apache.wicket.markup.html.link that return types with arguments of type Page
 Class<? extends Page> PageLink.getPageClass()
          Deprecated. Retrieves the class of page this link links to.
 Class<? extends Page> BookmarkablePageLink.getPageClass()
          Get tge page class registered with the link
 Class<? extends Page> IPageLink.getPageIdentity()
          Gets the class of the destination page, which serves as a form of identity that can be used to determine if a link is on the same Page that it links to.
 

Methods in org.apache.wicket.markup.html.link with parameters of type Page
 boolean PageLink.linksTo(Page page)
          Deprecated. Returns true if the given page is of the same class as the (delayed) destination of this page link.
protected  boolean Link.linksTo(Page page)
          Whether this link refers to the given page.
 boolean BookmarkablePageLink.linksTo(Page page)
          Whether this link refers to the given page.
 

Constructors in org.apache.wicket.markup.html.link with parameters of type Page
InlineFrame(String id, Page page)
          This constructor is ideal if a Page object was passed in from a previous Page.
InternalFrame(String id, IPageMap pageMap, Page page)
          Deprecated. This constructor is ideal if a Page object was passed in from a previous Page.
PageLink(String id, Page page)
          Deprecated. rather than using this class/ constructor, use normal links and call setResponsePage in their onClick methods.
 

Uses of Page in org.apache.wicket.markup.html.navigation.paging
 

Methods in org.apache.wicket.markup.html.navigation.paging with parameters of type Page
 boolean PagingNavigationLink.linksTo(Page page)
          Returns true if this PageableListView navigation link links to the given page.
 boolean PagingNavigationIncrementLink.linksTo(Page page)
          Returns true if the page link links to the given page.
 

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

Subclasses of Page in org.apache.wicket.markup.html.pages
 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.
 

Constructors in org.apache.wicket.markup.html.pages with parameters of type Page
ExceptionErrorPage(Throwable throwable, Page page)
          Constructor.
RedirectPage(Page page)
          Construct.
RedirectPage(Page page, int waitBeforeRedirectInSeconds)
          Construct.
 

Uses of Page in org.apache.wicket.protocol.http
 

Methods in org.apache.wicket.protocol.http with type parameters of type Page
<T extends Page>
void
WebApplication.mountBookmarkablePage(String path, Class<T> bookmarkablePageClass)
          Mounts a bookmarkable page class to the given path.
<T extends Page>
void
WebApplication.mountBookmarkablePage(String path, String pageMapName, Class<T> bookmarkablePageClass)
          Mounts a bookmarkable page class to the given pagemap and path.
<C extends Page>
void
MockWebApplication.processRequestCycle(Class<C> pageClass)
          Initialize a new WebRequestCycle and all its dependent objects
<C extends Page>
void
MockWebApplication.processRequestCycle(Class<C> pageClass, PageParameters params)
          Initialize a new WebRequestCycle and all its dependent objects
 

Methods in org.apache.wicket.protocol.http that return Page
 Page SecondLevelCacheSessionStore.ISerializationAwarePageStore.convertToPage(Object page)
           
 Page SecondLevelCacheSessionStore.SecondLevelCachePageMap.get(int id, int versionNumber)
           
protected  Page SecondLevelCacheSessionStore.SecondLevelCachePageMap.getLastPage()
           
 Page MockWebApplication.getLastRenderedPage()
          Get the page that was just rendered by the last request cycle processing.
<T> Page
TestFilePageStore.getPage(String sessionId, String pagemap, int id, int versionNumber, int ajaxVersionNumber)
           
<T> Page
SecondLevelCacheSessionStore.IPageStore.getPage(String sessionId, String pagemap, int id, int versionNumber, int ajaxVersionNumber)
          Restores a page version from the persistent layer.
 Page MockWebApplication.getPreviousRenderedPage()
          Get the page that was previously
 

Methods in org.apache.wicket.protocol.http that return types with arguments of type Page
static IntHashMap<Page> SecondLevelCacheSessionStore.getUsedPages(String pageMapName)
           
 

Methods in org.apache.wicket.protocol.http with parameters of type Page
 AjaxRequestTarget WebApplication.newAjaxRequestTarget(Page page)
          Creates a new ajax request target used to control ajax responses
 IPageVersionManager SecondLevelCacheSessionStore.newVersionManager(Page page)
           
 IPageVersionManager AbstractHttpSessionStore.newVersionManager(Page page)
           
 void TestFilePageStore.pageAccessed(String sessionId, Page page)
           
 void SecondLevelCacheSessionStore.IPageStore.pageAccessed(String sessionId, Page page)
          This method is called when the page is accessed.
 void SecondLevelCacheSessionStore.SecondLevelCachePageMap.put(Page page)
           
 void WebRequestCycle.redirectTo(Page page)
          Redirects browser to the given page.
protected  void SecondLevelCacheSessionStore.SecondLevelCachePageMap.setLastPage(Page lastPage)
           
 void MockHttpServletRequest.setRequestToBookmarkablePage(Page page, Map<String,Object> params)
          Initialize the request parameters to point to the given bookmarkable page.
 void TestFilePageStore.storePage(String sessionId, Page page)
           
 void SecondLevelCacheSessionStore.IPageStore.storePage(String sessionId, Page page)
          Stores the page to a persistent layer.
 

Uses of Page in org.apache.wicket.protocol.http.pagestore
 

Methods in org.apache.wicket.protocol.http.pagestore that return Page
 Page DiskPageStore.convertToPage(Object page)
           
protected  Page AbstractPageStore.deserializePage(byte[] data, int versionNumber)
          Creates a page instance from given byte array.
 Page SimpleSynchronousFilePageStore.getPage(String sessionId, String pageMapName, int pageId, int versionNumber, int ajaxVersionNumber)
           
<T> Page
DiskPageStore.getPage(String sessionId, String pagemap, int id, int versionNumber, int ajaxVersionNumber)
           
 

Methods in org.apache.wicket.protocol.http.pagestore with parameters of type Page
 void SimpleSynchronousFilePageStore.pageAccessed(String sessionId, Page page)
           
 void DiskPageStore.pageAccessed(String sessionId, Page page)
           
protected  List<AbstractPageStore.SerializedPage> AbstractPageStore.serializePage(Page page)
          Creates a list of AbstractPageStore.SerializedPage instances obtained from serializing the provided page.
 void SimpleSynchronousFilePageStore.storePage(String sessionId, Page page)
           
 void DiskPageStore.storePage(String sessionId, Page page)
           
 

Constructors in org.apache.wicket.protocol.http.pagestore with parameters of type Page
AbstractPageStore.SerializedPage(Page page)
          Construct.
 

Uses of Page in org.apache.wicket.protocol.http.request.urlcompressing
 

Methods in org.apache.wicket.protocol.http.request.urlcompressing with parameters of type Page
protected  IRequestTarget UrlCompressingWebRequestProcessor.resolveListenerInterfaceTarget(RequestCycle requestCycle, Page page, String componentPath, String interfaceName, RequestParameters requestParameters)
           
 

Uses of Page in org.apache.wicket.request
 

Methods in org.apache.wicket.request that return Page
protected  Page AbstractRequestCycleProcessor.onRuntimeException(Page page, RuntimeException e)
          This method is called when a runtime exception is thrown, just before the actual handling of the runtime exception.
 

Methods in org.apache.wicket.request with parameters of type Page
protected  Page AbstractRequestCycleProcessor.onRuntimeException(Page page, RuntimeException e)
          This method is called when a runtime exception is thrown, just before the actual handling of the runtime exception.
protected  IRequestTarget AbstractRequestCycleProcessor.resolveListenerInterfaceTarget(RequestCycle requestCycle, Page page, String componentPath, String interfaceName, RequestParameters requestParameters)
          Resolves the RequestTarget for the given interface.
 

Uses of Page in org.apache.wicket.request.target.coding
 

Fields in org.apache.wicket.request.target.coding with type parameters of type Page
protected  WeakReference<Class<? extends Page>> BookmarkablePageRequestTargetUrlCodingStrategy.bookmarkablePageClassRef
          bookmarkable page class.
protected  WeakReference<Class<? extends Page>> HybridUrlCodingStrategy.pageClassRef
          bookmarkable page class.
 

Methods in org.apache.wicket.request.target.coding with type parameters of type Page
protected
<C extends Page>
Page
HybridUrlCodingStrategy.HybridBookmarkablePageRequestTarget.newPage(Class<C> pageClass, RequestCycle requestCycle)
           
 

Methods in org.apache.wicket.request.target.coding that return Page
protected
<C extends Page>
Page
HybridUrlCodingStrategy.HybridBookmarkablePageRequestTarget.newPage(Class<C> pageClass, RequestCycle requestCycle)
           
 

Methods in org.apache.wicket.request.target.coding with parameters of type Page
static PageParameters HybridUrlCodingStrategy.getInitialPagePageParameters(Page page)
           
static void HybridUrlCodingStrategy.setInitialPageParameters(Page page, PageParameters pageParameters)
          Sets the initial page parameters for page instance.
 

Method parameters in org.apache.wicket.request.target.coding with type arguments of type Page
protected  IRequestTarget HybridUrlCodingStrategy.handleExpiredPage(String pageMapName, Class<? extends Page> pageClass, int trailingSlashesCount, boolean redirect)
          Handles the case where a non-bookmarkable url with a hybrid base refers to a page that is no longer in session.
 

Constructor parameters in org.apache.wicket.request.target.coding with type arguments of type Page
HybridUrlCodingStrategy.HybridBookmarkablePageRequestTarget(String pageMapName, Class<? extends Page> pageClass, PageParameters pageParameters, int originalUrlTrailingSlashesCount, boolean redirect)
          Construct.
HybridUrlCodingStrategy(String mountPath, Class<? extends Page> pageClass)
          Construct.
HybridUrlCodingStrategy(String mountPath, Class<? extends Page> pageClass, boolean redirectOnBookmarkableRequest)
          Construct.
MixedParamHybridUrlCodingStrategy(String mountPath, Class<? extends Page> pageClass, boolean redirectOnBookmarkableRequest, String[] parameterNames)
          Construct.
MixedParamHybridUrlCodingStrategy(String mountPath, Class<? extends Page> pageClass, String[] parameterNames)
          Construct.
 

Uses of Page in org.apache.wicket.request.target.component
 

Methods in org.apache.wicket.request.target.component with type parameters of type Page
protected
<C extends Page>
Page
BookmarkablePageRequestTarget.newPage(Class<C> pageClass, RequestCycle requestCycle)
          Constructs a new instance of a page given its class name
 

Methods in org.apache.wicket.request.target.component that return Page
 Page PageRequestTarget.getPage()
           
 Page PageReferenceRequestTarget.getPage()
          Gets the page instance.
 Page IPageRequestTarget.getPage()
          Gets the page instance.
 Page BookmarkablePageRequestTarget.getPage()
           
protected  Page BookmarkablePageRequestTarget.getPage(RequestCycle requestCycle)
          Gets a newly constructed page if we are not in a redirect.
protected
<C extends Page>
Page
BookmarkablePageRequestTarget.newPage(Class<C> pageClass, RequestCycle requestCycle)
          Constructs a new instance of a page given its class name
 

Methods in org.apache.wicket.request.target.component that return types with arguments of type Page
 Class<? extends Page> IBookmarkablePageRequestTarget.getPageClass()
          Gets the page class.
 Class<? extends Page> BookmarkablePageRequestTarget.getPageClass()
           
 

Methods in org.apache.wicket.request.target.component with parameters of type Page
protected  void BookmarkablePageRequestTarget.setPage(Page page)
           
 

Constructors in org.apache.wicket.request.target.component with parameters of type Page
PageIdRequestTarget(Page page)
          Deprecated. 
PageReferenceRequestTarget(Page page)
          Constructor Even though a page is passed in, only a reference to its PageReference is kept
PageRequestTarget(Page page)
          Construct.
 

Constructor parameters in org.apache.wicket.request.target.component with type arguments of type Page
BookmarkableListenerInterfaceRequestTarget(String pageMapName, Class<? extends Page> pageClass, PageParameters pageParameters, Component component, RequestListenerInterface listenerInterface)
          This constructor is called for generating the urls (RequestCycle.urlFor()) So it will alter the PageParameters to include the 2 org.apache.wicket params WebRequestCodingStrategy.BOOKMARKABLE_PAGE_PARAMETER_NAME and WebRequestCodingStrategy.INTERFACE_PARAMETER_NAME
BookmarkableListenerInterfaceRequestTarget(String pageMapName, Class<? extends Page> pageClass, PageParameters pageParameters, String componentPath, String interfaceName, int versionNumber)
          This constructor is called when a stateless link is clicked on but the page wasn't found in the session.
 

Uses of Page in org.apache.wicket.request.target.component.listener
 

Constructors in org.apache.wicket.request.target.component.listener with parameters of type Page
AbstractListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
AbstractListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Construct.
BehaviorRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
BehaviorRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Construct.
ListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
ListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Construct.
RedirectPageRequestTarget(Page page)
          Construct.
 

Uses of Page in org.apache.wicket.request.target.resource
 

Constructors in org.apache.wicket.request.target.resource with parameters of type Page
ComponentResourceRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
 

Uses of Page in org.apache.wicket.session
 

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

Methods in org.apache.wicket.session that return Page
<C extends Page>
Page
DefaultPageFactory.newPage(Class<C> pageClass)
           
<C extends Page>
Page
DefaultPageFactory.newPage(Class<C> pageClass, PageParameters parameters)
           
 

Methods in org.apache.wicket.session with parameters of type Page
 IPageVersionManager ISessionStore.newVersionManager(Page page)
           
 

Uses of Page in org.apache.wicket.session.pagemap
 

Methods in org.apache.wicket.session.pagemap that return Page
 Page IPageMapEntry.getPage()
           
abstract  Page AbstractPageMapEntry.getPage()
           
 

Methods in org.apache.wicket.session.pagemap that return types with arguments of type Page
 Class<? extends Page> IPageMapEntry.getPageClass()
           
 Class<? extends Page> AbstractPageMapEntry.getPageClass()
          Failing to override this method could be pretty expensive because this default implementation calls getPage(), which probably creates the page.
 

Uses of Page in org.apache.wicket.settings
 

Methods in org.apache.wicket.settings with type parameters of type Page
<C extends Page>
void
Settings.setAccessDeniedPage(Class<C> accessDeniedPage)
           
<C extends Page>
void
IApplicationSettings.setAccessDeniedPage(Class<C> accessDeniedPage)
          Sets the access denied page class.
<C extends Page>
void
Settings.setInternalErrorPage(Class<C> internalErrorPage)
           
<C extends Page>
void
IApplicationSettings.setInternalErrorPage(Class<C> internalErrorPage)
          Sets internal error page class.
<C extends Page>
void
Settings.setPageExpiredErrorPage(Class<C> pageExpiredErrorPage)
           
<C extends Page>
void
IApplicationSettings.setPageExpiredErrorPage(Class<C> pageExpiredErrorPage)
          Sets the page expired page class.
 

Methods in org.apache.wicket.settings that return types with arguments of type Page
 Class<? extends Page> Settings.getAccessDeniedPage()
           
 Class<? extends Page> IApplicationSettings.getAccessDeniedPage()
          Gets the access denied page class.
 Class<? extends Page> Settings.getInternalErrorPage()
           
 Class<? extends Page> IApplicationSettings.getInternalErrorPage()
          Gets internal error page class.
 Class<? extends Page> Settings.getPageExpiredErrorPage()
           
 Class<? extends Page> IApplicationSettings.getPageExpiredErrorPage()
          Gets the page expired page class.
 

Uses of Page in org.apache.wicket.spring.annot.web
 

Subclasses of Page in org.apache.wicket.spring.annot.web
 class AnnotPage
           
 

Uses of Page in org.apache.wicket.spring.common.web
 

Subclasses of Page in org.apache.wicket.spring.common.web
 class BasePage
          Base page class.
 class ContactsDisplayPage
          Base class for the contact display page.
 

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

Subclasses of Page in org.apache.wicket.threadtest.apps.app1
 class ResourceTestPage
          Web page with 50 dynamically-created image resources.
 

Methods in org.apache.wicket.threadtest.apps.app1 that return types with arguments of type Page
 Class<? extends Page> TestApp1.getHomePage()
           
 

Uses of Page in org.apache.wicket.threadtest.apps.app2
 

Methods in org.apache.wicket.threadtest.apps.app2 that return types with arguments of type Page
 Class<? extends Page> TestApp2.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.util.tester
 class DummyHomePage
          A dummy home page, as required by WicketTester.
 class DummyPanelPage
          A dummy Panel Component.
 

Methods in org.apache.wicket.util.tester with type parameters of type Page
<C extends Page>
Result
BaseWicketTester.isPageLink(String path, Class<C> expectedPageClass)
          assert PageLink link to page class.
<C extends Page>
Result
BaseWicketTester.isRenderedPage(Class<C> expectedRenderedPageClass)
          Asserts the last rendered Page class.
<C extends Page>
Page
BaseWicketTester.startPage(Class<C> pageClass)
          Renders a Page from its default constructor.
<C extends Page>
Page
BaseWicketTester.startPage(Class<C> pageClass, PageParameters parameters)
          Renders a Page from its default constructor.
 

Methods in org.apache.wicket.util.tester that return Page
 Page ITestPageSource.getTestPage()
          Defines a Page instance source for WicketTester.
<C extends Page>
Page
BaseWicketTester.startPage(Class<C> pageClass)
          Renders a Page from its default constructor.
<C extends Page>
Page
BaseWicketTester.startPage(Class<C> pageClass, PageParameters parameters)
          Renders a Page from its default constructor.
 Page BaseWicketTester.startPage(ITestPageSource testPageSource)
          Renders a Page defined in TestPageSource.
 Page BaseWicketTester.startPage(Page page)
          Renders the Page.
 

Methods in org.apache.wicket.util.tester that return types with arguments of type Page
 Class<? extends Page> WicketTester.DummyWebApplication.getHomePage()
           
 Class<? extends Page> BaseWicketTester.DummyWebApplication.getHomePage()
           
 

Methods in org.apache.wicket.util.tester with parameters of type Page
static List<WicketTesterHelper.ComponentData> WicketTesterHelper.getComponentData(Page page)
          Gets recursively all Components of a given Page, extracts the information relevant to us, and adds them to a List.
 Page BaseWicketTester.startPage(Page page)
          Renders the Page.
 

Method parameters in org.apache.wicket.util.tester with type arguments of type Page
 void WicketTester.assertPageLink(String path, Class<? extends Page> expectedPageClass)
          Asserts a PageLink link to a Page class.
 void WicketTester.assertRenderedPage(Class<? extends Page> expectedRenderedPageClass)
          Asserts a last-rendered Page class.
 

Constructor parameters in org.apache.wicket.util.tester with type arguments of type Page
WicketTester(Class<? extends Page> homePage)
          Creates a WicketTester and automatically creates a WebApplication.
 

Uses of Page in org.apache.wicket.version
 

Methods in org.apache.wicket.version that return Page
 Page IPageVersionManager.getVersion(int versionNumber)
          Retrieves a given Page version.
 Page IPageVersionManager.rollbackPage(int numberOfVersions)
          Rolls back the Page by the number of versions specified, including the Ajax versions.
 

Uses of Page in org.apache.wicket.version.undo
 

Methods in org.apache.wicket.version.undo that return Page
 Page UndoPageVersionManager.getVersion(int versionNumber)
           
 Page UndoPageVersionManager.rollbackPage(int numberOfVersions)
           
 

Constructors in org.apache.wicket.version.undo with parameters of type Page
UndoPageVersionManager(Page page, int maxVersions)
          Constructor.
 



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