|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Page | |
|---|---|
| org.apache.wicket | The core Wicket package. |
| org.apache.wicket.ajax | |
| org.apache.wicket.authorization.strategies.page | |
| 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.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 | ||
|---|---|---|
|
IPageFactory.newPage(java.lang.Class<C> pageClass)
Creates a new page using a page class. |
|
|
IPageFactory.newPage(java.lang.Class<C> pageClass,
PageParameters parameters)
Creates a new Page, passing PageParameters to the Page constructor if such a constructor exists. |
|
|
PageMap.redirectToInterceptPage(java.lang.Class<T> pageClazz)
Redirects browser to an intermediate page such as a sign-in page. |
|
|
IPageMap.redirectToInterceptPage(java.lang.Class<T> pageClazz)
Redirects browser to an intermediate page such as a sign-in page. |
|
|
RequestCycle.setResponsePage(java.lang.Class<C> pageClass)
Convenience method that sets page class as the response. |
|
|
Component.setResponsePage(java.lang.Class<C> cls)
Sets the page that will respond to this request |
|
|
RequestCycle.setResponsePage(java.lang.Class<C> pageClass,
PageParameters pageParameters)
Sets the page class with optionally the page parameters as the render target of this request. |
|
|
Component.setResponsePage(java.lang.Class<C> cls,
PageParameters parameters)
Sets the page class and its parameters that will respond to this request |
|
|
RequestCycle.setResponsePage(java.lang.Class<C> pageClass,
PageParameters pageParameters,
java.lang.String pageMapName)
Sets the page class with optionally the page parameters and page map name as the render target of this request. |
|
|
RequestCycle.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. |
|
|
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. |
|
|
RequestCycle.urlFor(IPageMap pageMap,
java.lang.Class<C> pageClass,
PageParameters parameters)
Returns a bookmarkable URL that references a given page class using a given set of page parameters. |
|
|
Component.urlFor(IPageMap pageMap,
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. |
|
abstract Page |
PageMap.get(int id,
int versionNumber)
|
|
Page |
AccessStackPageMap.get(int id,
int versionNumber)
Retrieves page with given id. |
|
Page |
IPageMap.get(int id,
int versionNumber)
Retrieves page with given id. |
|
Page |
PageReference.getPage()
|
|
Page |
Component.getPage()
Gets the page holding this component. |
|
Page |
Request.getPage()
|
|
Page |
Session.getPage(int pageId,
int versionNumber)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. |
|
Page |
Session.getPage(java.lang.String pageMapName,
java.lang.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. |
|
|
IPageFactory.newPage(java.lang.Class<C> pageClass)
Creates a new page using a page class. |
|
|
IPageFactory.newPage(java.lang.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,
java.lang.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 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()
|
java.lang.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,
java.lang.String name,
Page page,
java.io.ObjectInputStream stream)
Called when page is being deserialized |
java.lang.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,
java.lang.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 |
AccessStackPageMap.put(Page page)
|
void |
IPageMap.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 |
Component.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 |
PageMap.remove(Page page)
|
void |
IPageMap.remove(Page page)
Removes the page from the pagemap |
void |
Page.IPageSerializer.serializePage(Page page,
java.io.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. |
java.lang.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.authorization.strategies.page |
|---|
| Methods in org.apache.wicket.authorization.strategies.page with type parameters of type Page | ||
|---|---|---|
protected
|
AbstractPageAuthorizationStrategy.isPageAuthorized(java.lang.Class<T> pageClass)
Whether to page may be created. |
|
protected
|
SimplePageAuthorizationStrategy.isPageAuthorized(java.lang.Class<T> pageClass)
|
|
| 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(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> |
PageLink.getPageClass()
Deprecated. Retrieves the class of page this link links to. |
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 | |
|---|---|
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. |
boolean |
BookmarkablePageLink.linksTo(Page page)
Whether this link refers to the given page. |
protected boolean |
Link.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. |
|
InternalFrame(java.lang.String id,
IPageMap pageMap,
Page page)
Deprecated. This constructor is ideal if a Page object was passed in from a previous Page. |
|
PageLink(java.lang.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 |
PagingNavigationIncrementLink.linksTo(Page page)
Returns true if the page link links to the given page. |
boolean |
PagingNavigationLink.linksTo(Page page)
Returns true if this PageableListView navigation 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(java.lang.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 | ||
|---|---|---|
|
WebApplication.mountBookmarkablePage(java.lang.String path,
java.lang.Class<T> bookmarkablePageClass)
Mounts a bookmarkable page class to the given path. |
|
|
WebApplication.mountBookmarkablePage(java.lang.String path,
java.lang.String pageMapName,
java.lang.Class<T> bookmarkablePageClass)
Mounts a bookmarkable page class to the given pagemap and path. |
|
|
MockWebApplication.processRequestCycle(java.lang.Class<C> pageClass)
Initialize a new WebRequestCycle and all its dependent objects |
|
|
MockWebApplication.processRequestCycle(java.lang.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(java.lang.Object page)
|
|
Page |
MockWebApplication.getLastRenderedPage()
Get the page that was just rendered by the last request cycle processing. |
|
|
SecondLevelCacheSessionStore.IPageStore.getPage(java.lang.String sessionId,
java.lang.String pagemap,
int id,
int versionNumber,
int ajaxVersionNumber)
Restores a page version from the persistent layer. |
|
|
TestFilePageStore.getPage(java.lang.String sessionId,
java.lang.String pagemap,
int id,
int versionNumber,
int ajaxVersionNumber)
|
|
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(java.lang.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 |
SecondLevelCacheSessionStore.IPageStore.pageAccessed(java.lang.String sessionId,
Page page)
This method is called when the page is accessed. |
void |
TestFilePageStore.pageAccessed(java.lang.String sessionId,
Page page)
|
void |
WebRequestCycle.redirectTo(Page page)
Redirects browser to the given page. |
void |
MockHttpServletRequest.setRequestToBookmarkablePage(Page page,
java.util.Map<java.lang.String,java.lang.Object> params)
Initialize the request parameters to point to the given bookmarkable page. |
void |
SecondLevelCacheSessionStore.IPageStore.storePage(java.lang.String sessionId,
Page page)
Stores the page to a persistent layer. |
void |
TestFilePageStore.storePage(java.lang.String sessionId,
Page page)
|
| Uses of Page in org.apache.wicket.protocol.http.pagestore |
|---|
| Methods in org.apache.wicket.protocol.http.pagestore that return Page | ||
|---|---|---|
Page |
DiskPageStore.convertToPage(java.lang.Object page)
|
|
protected Page |
AbstractPageStore.deserializePage(byte[] data,
int versionNumber)
Creates a page instance from given byte array. |
|
Page |
SimpleSynchronousFilePageStore.getPage(java.lang.String sessionId,
java.lang.String pageMapName,
int pageId,
int versionNumber,
int ajaxVersionNumber)
|
|
|
DiskPageStore.getPage(java.lang.String sessionId,
java.lang.String pagemap,
int id,
int versionNumber,
int ajaxVersionNumber)
|
|
| Methods in org.apache.wicket.protocol.http.pagestore with parameters of type Page | |
|---|---|
void |
DiskPageStore.pageAccessed(java.lang.String sessionId,
Page page)
|
void |
SimpleSynchronousFilePageStore.pageAccessed(java.lang.String sessionId,
Page page)
|
protected java.util.List<AbstractPageStore.SerializedPage> |
AbstractPageStore.serializePage(Page page)
Creates a list of AbstractPageStore.SerializedPage instances obtained from serializing the provided
page. |
void |
DiskPageStore.storePage(java.lang.String sessionId,
Page page)
|
void |
SimpleSynchronousFilePageStore.storePage(java.lang.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,
java.lang.String componentPath,
java.lang.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,
java.lang.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,
java.lang.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,
java.lang.String componentPath,
java.lang.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 java.lang.ref.WeakReference<java.lang.Class<? extends Page>> |
BookmarkablePageRequestTargetUrlCodingStrategy.bookmarkablePageClassRef
bookmarkable page class. |
protected java.lang.ref.WeakReference<java.lang.Class<? extends Page>> |
HybridUrlCodingStrategy.pageClassRef
bookmarkable page class. |
| Methods in org.apache.wicket.request.target.coding with type parameters of type Page | ||
|---|---|---|
protected
|
HybridUrlCodingStrategy.HybridBookmarkablePageRequestTarget.newPage(java.lang.Class<C> pageClass,
RequestCycle requestCycle)
|
|
| Methods in org.apache.wicket.request.target.coding that return Page | ||
|---|---|---|
protected
|
HybridUrlCodingStrategy.HybridBookmarkablePageRequestTarget.newPage(java.lang.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(java.lang.String pageMapName,
java.lang.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(java.lang.String pageMapName,
java.lang.Class<? extends Page> pageClass,
PageParameters pageParameters,
int originalUrlTrailingSlashesCount,
boolean redirect)
Construct. |
|
HybridUrlCodingStrategy(java.lang.String mountPath,
java.lang.Class<? extends Page> pageClass)
Construct. |
|
HybridUrlCodingStrategy(java.lang.String mountPath,
java.lang.Class<? extends Page> pageClass,
boolean redirectOnBookmarkableRequest)
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
|
BookmarkablePageRequestTarget.newPage(java.lang.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 |
IPageRequestTarget.getPage()
Gets the page instance. |
|
Page |
BookmarkablePageRequestTarget.getPage()
|
|
Page |
PageRequestTarget.getPage()
|
|
protected Page |
BookmarkablePageRequestTarget.getPage(RequestCycle requestCycle)
Gets a newly constructed page if we are not in a redirect. |
|
protected
|
BookmarkablePageRequestTarget.newPage(java.lang.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 | |
|---|---|
java.lang.Class<? extends Page> |
IBookmarkablePageRequestTarget.getPageClass()
Gets the page class. |
java.lang.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(java.lang.String pageMapName,
java.lang.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(java.lang.String pageMapName,
java.lang.Class<? extends Page> pageClass,
PageParameters pageParameters,
java.lang.String componentPath,
java.lang.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 | ||
|---|---|---|
|
DefaultPageFactory.newPage(java.lang.Class<C> pageClass)
|
|
|
DefaultPageFactory.newPage(java.lang.Class<C> pageClass,
PageParameters parameters)
|
|
| Methods in org.apache.wicket.session that return Page | ||
|---|---|---|
|
DefaultPageFactory.newPage(java.lang.Class<C> pageClass)
|
|
|
DefaultPageFactory.newPage(java.lang.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 | |
|---|---|
java.lang.Class<? extends Page> |
IPageMapEntry.getPageClass()
|
java.lang.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 | ||
|---|---|---|
|
IApplicationSettings.setAccessDeniedPage(java.lang.Class<C> accessDeniedPage)
Sets the access denied page class. |
|
|
Settings.setAccessDeniedPage(java.lang.Class<C> accessDeniedPage)
|
|
|
IApplicationSettings.setInternalErrorPage(java.lang.Class<C> internalErrorPage)
Sets internal error page class. |
|
|
Settings.setInternalErrorPage(java.lang.Class<C> internalErrorPage)
|
|
|
IApplicationSettings.setPageExpiredErrorPage(java.lang.Class<C> pageExpiredErrorPage)
Sets the page expired page class. |
|
|
Settings.setPageExpiredErrorPage(java.lang.Class<C> pageExpiredErrorPage)
|
|
| 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> |
Settings.getAccessDeniedPage()
|
java.lang.Class<? extends Page> |
IApplicationSettings.getInternalErrorPage()
Gets internal error page class. |
java.lang.Class<? extends Page> |
Settings.getInternalErrorPage()
|
java.lang.Class<? extends Page> |
IApplicationSettings.getPageExpiredErrorPage()
Gets the page expired page class. |
java.lang.Class<? extends Page> |
Settings.getPageExpiredErrorPage()
|
| 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 | ||
|---|---|---|
|
BaseWicketTester.isPageLink(java.lang.String path,
java.lang.Class<C> expectedPageClass)
assert PageLink link to page class. |
|
|
BaseWicketTester.isRenderedPage(java.lang.Class<C> expectedRenderedPageClass)
Asserts the last rendered Page class. |
|
|
BaseWicketTester.startPage(java.lang.Class<C> pageClass)
Renders a Page from its default constructor. |
|
|
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 | ||
|---|---|---|
Page |
ITestPageSource.getTestPage()
Defines a Page instance source for WicketTester. |
|
|
BaseWicketTester.startPage(java.lang.Class<C> pageClass)
Renders a Page from its default constructor. |
|
|
BaseWicketTester.startPage(java.lang.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 | |
|---|---|
java.lang.Class<? extends Page> |
WicketTester.DummyWebApplication.getHomePage()
|
java.lang.Class<? extends Page> |
BaseWicketTester.DummyWebApplication.getHomePage()
|
| Methods in org.apache.wicket.util.tester with parameters of type Page | |
|---|---|
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.assertPageLink(java.lang.String path,
java.lang.Class<? extends Page> expectedPageClass)
Asserts a PageLink link to a Page class. |
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. |
|
| 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. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||