|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Page | |
---|---|
org.apache.wicket | The core Wicket package. |
org.apache.wicket.ajax | |
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.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 that return Page | |
---|---|
protected Page |
Component.findPage()
If this Component is a Page, returns self. |
Page |
AccessStackPageMap.get(int id,
int versionNumber)
Retrieves page with given id. |
abstract Page |
PageMap.get(int id,
int versionNumber)
|
Page |
IPageMap.get(int id,
int versionNumber)
Retrieves page with given id. |
Page |
Request.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(java.lang.String pageMapName,
java.lang.String path,
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. |
Page |
Component.newPage(java.lang.Class c)
Creates a new page using the component's page factory |
Page |
IPageFactory.newPage(java.lang.Class pageClass)
Creates a new page using a page class. |
Page |
Component.newPage(java.lang.Class c,
PageParameters parameters)
Creates a new page using the component's page factory |
Page |
IPageFactory.newPage(java.lang.Class 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 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 |
IPageFactory |
Session.getPageFactory(Page page)
|
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. |
void |
AccessStackPageMap.put(Page page)
|
abstract void |
PageMap.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 |
Component.setResponsePage(Page page)
Sets the page that will respond to this request |
void |
RequestCycle.setResponsePage(Page page)
Sets the page as the render target of 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.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 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. |
boolean |
PageLink.linksTo(Page page)
Returns true if the given page is of the same class as the (delayed) destination of this page link. |
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 |
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(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 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. |
Page |
TestFilePageStore.getPage(java.lang.String sessionId,
java.lang.String pagemap,
int id,
int versionNumber,
int ajaxVersionNumber)
|
Page |
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. |
Page |
MockWebApplication.getPreviousRenderedPage()
Get the page that was previously |
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 |
AbstractHttpSessionStore.newVersionManager(Page page)
|
IPageVersionManager |
SecondLevelCacheSessionStore.newVersionManager(Page page)
|
void |
TestFilePageStore.pageAccessed(java.lang.String sessionId,
Page page)
|
void |
SecondLevelCacheSessionStore.IPageStore.pageAccessed(java.lang.String sessionId,
Page page)
This method is called when the page is accessed. |
void |
WebRequestCycle.redirectTo(Page page)
Redirects browser to the given page. |
void |
MockHttpServletRequest.setRequestToBookmarkablePage(Page page,
java.util.Map params)
Initialize the request parameters to point to the given bookmarkable page. |
void |
TestFilePageStore.storePage(java.lang.String sessionId,
Page page)
|
void |
SecondLevelCacheSessionStore.IPageStore.storePage(java.lang.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(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)
|
Page |
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 |
SimpleSynchronousFilePageStore.pageAccessed(java.lang.String sessionId,
Page page)
|
void |
DiskPageStore.pageAccessed(java.lang.String sessionId,
Page page)
|
protected java.util.List |
AbstractPageStore.serializePage(Page page)
Creates a list of AbstractPageStore.SerializedPage instances obtained from serializing the provided
page. |
void |
SimpleSynchronousFilePageStore.storePage(java.lang.String sessionId,
Page page)
|
void |
DiskPageStore.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 |
---|
Methods in org.apache.wicket.request.target.coding that return Page | |
---|---|
protected Page |
HybridUrlCodingStrategy.HybridBookmarkablePageRequestTarget.newPage(java.lang.Class 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. |
Uses of Page in org.apache.wicket.request.target.component |
---|
Methods in org.apache.wicket.request.target.component that return Page | |
---|---|
Page |
BookmarkablePageRequestTarget.getPage()
|
Page |
PageRequestTarget.getPage()
|
Page |
IPageRequestTarget.getPage()
Gets the page instance. |
protected Page |
BookmarkablePageRequestTarget.getPage(RequestCycle requestCycle)
Gets a newly constructed page if we are not in a redirect. |
protected Page |
BookmarkablePageRequestTarget.newPage(java.lang.Class pageClass,
RequestCycle requestCycle)
Constructs a new instance of a page given its class name |
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 | |
---|---|
PageRequestTarget(Page page)
Construct. |
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 that return Page | |
---|---|
Page |
DefaultPageFactory.newPage(java.lang.Class pageClass)
|
Page |
DefaultPageFactory.newPage(java.lang.Class 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 | |
---|---|
abstract Page |
AbstractPageMapEntry.getPage()
|
Page |
IPageMapEntry.getPage()
|
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 that return Page | |
---|---|
Page |
ITestPageSource.getTestPage()
Defines a Page instance source for WicketTester . |
Page |
BaseWicketTester.startPage(java.lang.Class pageClass)
Renders a Page from its default constructor. |
Page |
BaseWicketTester.startPage(java.lang.Class 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 with parameters of type Page | |
---|---|
static java.util.List |
WicketTesterHelper.getComponentData(Page page)
Gets recursively all Component s of a given Page , extracts the
information relevant to us, and adds them to a List . |
Page |
BaseWicketTester.startPage(Page page)
Renders the Page . |
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 |