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.authorization.strategies.page   
org.apache.wicket.authroles.authentication   
org.apache.wicket.authroles.authentication.pages   
org.apache.wicket.devutils   
org.apache.wicket.devutils.debugbar   
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.ajax.prototype   
org.apache.wicket.examples.authentication1   
org.apache.wicket.examples.authentication2   
org.apache.wicket.examples.authentication3   
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.events   
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.homepage   
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.pub   
org.apache.wicket.examples.pub2   
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   
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.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.mock   
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.request.cycle   
org.apache.wicket.session   
org.apache.wicket.settings   
org.apache.wicket.settings.def   
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. 
 

Uses of Page in org.apache.wicket
 

Methods in org.apache.wicket with type parameters of type Page
<C extends Page>
java.lang.CharSequence
Component.urlFor(java.lang.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.
 Page PageReference.getPage()
           
 Page Component.getPage()
          Gets the page holding this component.
 

Methods in org.apache.wicket that return types with arguments of type Page
abstract  java.lang.Class<? extends Page> Application.getHomePage()
          Application subclasses must specify a home page class by implementing this abstract method.
 java.lang.Class<? extends Page> Page.getPageClass()
           
 

Methods in org.apache.wicket with parameters of type Page
 void Component.redirectToInterceptPage(Page page)
          Redirects browser to an intermediate page such as a sign-in page.
 void Component.setResponsePage(Page page)
          Sets the page that will respond to this request
 

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

Constructor parameters in org.apache.wicket with type arguments of type Page
RestartResponseAtInterceptPageException(java.lang.Class<? extends Page> interceptPageClass)
          Redirects to the specified intercept page, this will result in a bookmarkable redirect.
RestartResponseAtInterceptPageException(java.lang.Class<? extends Page> interceptPageClass, PageParameters parameters)
          Redirects to the specified intercept page, this will result in a bookmarkable redirect.
 

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.authorization.strategies.page
 

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

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

Methods in org.apache.wicket.authroles.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.authroles.authentication.pages
 

Subclasses of Page in org.apache.wicket.authroles.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.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  java.lang.Class<? extends Page> StandardDebugPanel.getLinkPageClass()
           
protected  java.lang.Class<? extends Page> SessionSizeDebugPanel.getLinkPageClass()
           
protected  java.lang.Class<? extends Page> PageSizeDebugPanel.getLinkPageClass()
           
protected  java.lang.Class<? extends Page> InspectorDebugPanel.getLinkPageClass()
           
 

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

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

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.
 

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 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 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
 java.lang.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
 

Subclasses of Page in org.apache.wicket.examples.ajax.prototype
 class Index
          Example displaying partial page rendering using the counting link example and prototype.js.
 

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

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

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

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

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

Subclasses of Page in org.apache.wicket.examples.authentication2
 class AuthenticatedWebPage
          Base class to check access to a page.
 class SignIn2
          Simple example of a sign in page.
 

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

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

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

Methods in org.apache.wicket.examples.authentication3 that return types with arguments of type Page
 java.lang.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
 java.lang.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
 java.lang.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
 java.lang.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 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 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 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 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
 java.lang.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
 java.lang.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
 java.lang.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
 java.lang.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
 java.lang.Class<? extends Page> EncodingsApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.events
 class DecoupledAjaxUpdatePage
           
 class IndexPage
           
 

Methods in org.apache.wicket.examples.events that return types with arguments of type Page
 java.lang.Class<? extends Page> EventsApplication.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
 java.lang.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(java.lang.Class<C> frameClass)
          Sets frame class.
 

Methods in org.apache.wicket.examples.frames that return types with arguments of type Page
 java.lang.Class<? extends Page> FrameTarget.getFrameClass()
          Gets frame class.
 java.lang.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
 java.lang.Class<? extends Page> GuestBookApplication.getHomePage()
           
 

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

Methods in org.apache.wicket.examples.guice that return types with arguments of type Page
 java.lang.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
 java.lang.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
 java.lang.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
 java.lang.Class<? extends Page> HelloWorldApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.homepage
 class HomePage
           
 

Methods in org.apache.wicket.examples.homepage that return types with arguments of type Page
 java.lang.Class<? extends Page> HomePageApplication.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
 java.lang.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
 java.lang.Class<? extends Page> WicketApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.library
 class EditBook
          A page that contains a form that allows editing of books.
 

Methods in org.apache.wicket.examples.library that return types with arguments of type Page
 java.lang.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 Page3
          Trivial page.
 class Popup
          Trivial popup page.
 

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

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

Methods in org.apache.wicket.examples.navomatic that return types with arguments of type Page
 java.lang.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
 java.lang.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
 java.lang.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.pub
 

Methods in org.apache.wicket.examples.pub that return types with arguments of type Page
 java.lang.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
 java.lang.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 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
 

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

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

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

Methods in org.apache.wicket.examples.requestmapper that return types with arguments of type Page
 java.lang.Class<? extends Page> RequestMapperApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.requestmapper.packageMount
 class PackageMountedPage
           
 

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(java.lang.Class<? extends Page> clazz, java.lang.String fileName)
           
 

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

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

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

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

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

Subclasses of Page in org.apache.wicket.examples.stateless
 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
 java.lang.Class<? extends Page> StatelessApplication.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
 java.lang.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
 java.lang.Class<? extends Page> TemplateApplication.getHomePage()
           
 

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

Subclasses of Page in org.apache.wicket.examples.template.pageinheritance
 class TemplatePage
          Base page that serves as a template for pages that inherit from it.
 

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
 java.lang.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
 java.lang.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.
 

Methods in org.apache.wicket.examples.velocity that return types with arguments of type Page
 java.lang.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
 java.lang.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 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 Page in org.apache.wicket.markup.html.debug
 

Constructors in org.apache.wicket.markup.html.debug with parameters of type Page
PageView(java.lang.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
 java.lang.Class<? extends Page> BookmarkablePageLink.getPageClass()
          Get tge page class registered with the link
 java.lang.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
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(java.lang.String id, Page page)
          This constructor is ideal if a Page object was passed in from a previous Page.
 

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 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.
 

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

Uses of Page in org.apache.wicket.mock
 

Subclasses of Page in org.apache.wicket.mock
 class MockHomePage
          Mock Page
 

Methods in org.apache.wicket.mock that return types with arguments of type Page
 java.lang.Class<? extends Page> MockApplication.getHomePage()
           
 

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

Methods in org.apache.wicket.protocol.http with type parameters of type Page
<P extends Page>
void
WebApplication.mountPackage(java.lang.String path, java.lang.Class<P> pageClass)
          Mounts mounts all bookmarkable pages in a the pageClass's package to the given path.
<T extends Page>
void
WebApplication.mountPage(java.lang.String path, java.lang.Class<T> pageClass)
          Mounts a page class to the given path.
 

Methods in org.apache.wicket.protocol.http that return types with arguments of type Page
 IContextProvider<AjaxRequestTarget,Page> WebApplication.getAjaxRequestTargetProvider()
          Returns the provider for AjaxRequestTarget objects.
 

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
 

Method parameters in org.apache.wicket.protocol.http with type arguments of type Page
 void WebApplication.setAjaxRequestTargetProvider(IContextProvider<AjaxRequestTarget,Page> ajaxRequestTargetProvider)
          Sets the provider for AjaxRequestTarget objects.
 

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

Methods in org.apache.wicket.request.cycle with type parameters of type Page
<C extends Page>
Url
RequestCycle.mapUrlFor(java.lang.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>
java.lang.CharSequence
RequestCycle.urlFor(java.lang.Class<C> pageClass, PageParameters parameters)
          Returns a rendered bookmarkable URL that references a given page class using a given set of page parameters.
 

Uses of Page in org.apache.wicket.session
 

Methods in org.apache.wicket.session that return Page
<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 Page in org.apache.wicket.settings
 

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

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

Uses of Page in org.apache.wicket.settings.def
 

Methods in org.apache.wicket.settings.def that return types with arguments of type Page
 java.lang.Class<? extends Page> ApplicationSettings.getAccessDeniedPage()
           
 java.lang.Class<? extends Page> ApplicationSettings.getInternalErrorPage()
           
 java.lang.Class<? extends Page> ApplicationSettings.getPageExpiredErrorPage()
           
 

Method parameters in org.apache.wicket.settings.def with type arguments of type Page
 void ApplicationSettings.setAccessDeniedPage(java.lang.Class<? extends Page> accessDeniedPage)
           
 void ApplicationSettings.setInternalErrorPage(java.lang.Class<? extends Page> internalErrorPage)
           
 void ApplicationSettings.setPageExpiredErrorPage(java.lang.Class<? extends Page> pageExpiredErrorPage)
           
 

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
 java.lang.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
 java.lang.Class<? extends Page> TestApp2.getHomePage()
           
 

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

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

Methods in org.apache.wicket.util.tester with type parameters of type Page
<T extends Page>
void
WicketTester.executeTest(java.lang.Class<?> testClass, java.lang.Class<T> pageClass, PageParameters parameters, java.lang.String filename)
          Use -Dwicket.replace.expected.results=true to automatically replace the expected output file.
<T extends Page>
void
WicketTester.executeTest(java.lang.Class<?> testClass, java.lang.Class<T> pageClass, java.lang.String filename)
          Use -Dwicket.replace.expected.results=true to automatically replace the expected output file.
<C extends Page>
Result
BaseWicketTester.isRenderedPage(java.lang.Class<C> expectedRenderedPageClass)
          Asserts the last rendered Page class.
<C extends Page>
C
BaseWicketTester.startPage(java.lang.Class<C> pageClass)
          Renders a Page from its default constructor.
<C extends Page>
C
BaseWicketTester.startPage(java.lang.Class<C> pageClass, PageParameters parameters)
          Renders a Page from its default constructor.
 

Methods in org.apache.wicket.util.tester that return Page
protected  Page BaseWicketTester.createPage()
          Creates a BaseWicketTester.StartComponentInPage to test a component with BaseWicketTester.startComponentInPage(Component, IMarkupFragment)
 Page BaseWicketTester.getLastRenderedPage()
           
 Page ITestPageSource.getTestPage()
          Deprecated. Defines a Page instance source for WicketTester.
 Page BaseWicketTester.startPage(IPageProvider pageProvider)
          Renders the page specified by given IPageProvider.
 Page BaseWicketTester.startPage(ITestPageSource testPageSource)
          Deprecated. since 1.5 use BaseWicketTester.startPage(Page) instead
 Page BaseWicketTester.startPage(Page page)
          Renders the page.
 

Methods in org.apache.wicket.util.tester with parameters of type Page
 void WicketTester.executeTest(java.lang.Class<?> testClass, Page page, java.lang.String filename)
          Use -Dwicket.replace.expected.results=true to automatically replace the expected output file.
static java.util.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.assertRenderedPage(java.lang.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(java.lang.Class<? extends Page> homePage)
          Creates a WicketTester and automatically creates a WebApplication.
 



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