|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IPage | |
---|---|
org.apache.tapestry | Tapestry is a comprehensive web application framework, written in Java. |
org.apache.tapestry.callback | Provides implementations of callbacks, objects that encapsulate a server request that is deferred, typically to allow a user to login or otherwise authenticate before proceeding with some other activity. |
org.apache.tapestry.contrib.inspector | Implementation of the Tapestry Inspector, a specialized page used to dynamically introspect the construction of an application while it runs. |
org.apache.tapestry.contrib.tree.model | Tree model classes/interfaces. |
org.apache.tapestry.engine | Implementations of the IEngine interface, including
the standard implementation:
BaseEngine . |
org.apache.tapestry.event | Defines events and listener interfaces for Tapestry. |
org.apache.tapestry.html | Components specific to the creation of HTML pages, including sophisticated DHTML JavaScript effects. |
org.apache.tapestry.pageload | Classes used when loading pages (and thier heirarchies of components) from thier specifications, as well as organizaing thier templates. |
org.apache.tapestry.pages | Basic pages used for errors, stale links and stale sessions. |
org.apache.tapestry.record | Abstract and simple (memory-based) implementations of
IPageRecorder . |
org.apache.tapestry.wml | Classes and components for main elements of the Wireless Markup Language (WML 1.2). |
org.apache.tapestry.wml.pages | WML style pages. |
Uses of IPage in org.apache.tapestry |
---|
Subinterfaces of IPage in org.apache.tapestry | |
---|---|
interface |
IExternalPage
Defines a page which may be referenced externally via a URL using the ExternalService . |
Classes in org.apache.tapestry that implement IPage | |
---|---|
class |
AbstractPage
Abstract base class implementing the IPage interface. |
Methods in org.apache.tapestry that return IPage | |
---|---|
IPage |
IRequestCycle.getPage()
Identifies the active page, the page which will ultimately render the response. |
IPage |
AbstractComponent.getPage()
|
IPage |
IComponent.getPage()
Returns the page which ultimately contains the receiver. |
IPage |
StaleSessionException.getPage()
Returns the page referenced by the service URL, if known, or null otherwise. |
IPage |
StaleLinkException.getPage()
Returns the page referenced by the service URL, if known, or null otherwise. |
IPage |
IRequestCycle.getPage(String name)
Returns the page with the given name. |
Methods in org.apache.tapestry with parameters of type IPage | |
---|---|
void |
IRequestCycle.activate(IPage page)
Sets the active page for the request. |
void |
AbstractComponent.setPage(IPage value)
|
void |
IComponent.setPage(IPage value)
Sets the page which ultimiately contains the component. |
Constructors in org.apache.tapestry with parameters of type IPage | |
---|---|
PageRedirectException(IPage page)
|
|
StaleLinkException(IPage page,
String targetActionId,
String targetIdPath)
Constructor used when the target action id is not found. |
|
StaleSessionException(String message,
IPage page)
|
Uses of IPage in org.apache.tapestry.callback |
---|
Constructors in org.apache.tapestry.callback with parameters of type IPage | |
---|---|
PageCallback(IPage page)
|
Uses of IPage in org.apache.tapestry.contrib.inspector |
---|
Classes in org.apache.tapestry.contrib.inspector that implement IPage | |
---|---|
class |
Inspector
The Tapestry Inspector page. |
Methods in org.apache.tapestry.contrib.inspector that return IPage | |
---|---|
IPage |
Inspector.getInspectedPage()
Returns the IPage currently inspected by the Inspector, as determined
from the inspectedPageName property. |
Uses of IPage in org.apache.tapestry.contrib.tree.model |
---|
Methods in org.apache.tapestry.contrib.tree.model with parameters of type IPage | |
---|---|
Object |
ISessionStoreManager.getSessionState(IPage objPage,
String strSessionStateID)
|
Object |
ISessionStoreManager.setSessionState(IPage objPage,
String strSessionStateID,
Object objSessionState)
|
Uses of IPage in org.apache.tapestry.engine |
---|
Methods in org.apache.tapestry.engine that return IPage | |
---|---|
IPage |
RequestCycle.getPage()
|
IPage |
IPageSource.getPage(IRequestCycle cycle,
String pageName)
Gets a given page for the engine. |
IPage |
RequestCycle.getPage(String name)
Gets the page from the engines's IPageSource . |
IPage |
IPageLoader.loadPage(String name,
INamespace namespace,
IRequestCycle cycle,
IComponentSpecification specification)
Invoked by the IPageSource to load a specific page. |
Methods in org.apache.tapestry.engine with parameters of type IPage | |
---|---|
void |
RequestCycle.activate(IPage page)
|
static String |
EngineMessages.pageNotCompatible(IPage page,
Class expectedType)
|
void |
IPageSource.releasePage(IPage page)
Invoked after the engine is done with the page (typically, after the response to the client has been sent). |
void |
IPageRecorder.rollback(IPage page)
Rolls back the page to the currently persisted state. |
Uses of IPage in org.apache.tapestry.event |
---|
Methods in org.apache.tapestry.event that return IPage | |
---|---|
IPage |
PageEvent.getPage()
|
Constructors in org.apache.tapestry.event with parameters of type IPage | |
---|---|
PageEvent(IPage page,
IRequestCycle cycle)
Constructs a new instance of the event. |
Uses of IPage in org.apache.tapestry.html |
---|
Classes in org.apache.tapestry.html that implement IPage | |
---|---|
class |
BasePage
Base class for HTML pages. |
Uses of IPage in org.apache.tapestry.pageload |
---|
Methods in org.apache.tapestry.pageload that return IPage | |
---|---|
IPage |
PageSource.getPage(IRequestCycle cycle,
String pageName)
Gets the page from a pool, or otherwise loads the page. |
IPage |
PageLoader.loadPage(String name,
INamespace namespace,
IRequestCycle cycle,
IComponentSpecification specification)
|
Methods in org.apache.tapestry.pageload with parameters of type IPage | |
---|---|
protected PageKey |
PageSource.buildKey(IPage page)
Builds a key from an existing page, using the page's name and locale. |
void |
PageSource.releasePage(IPage page)
Returns the page to the appropriate pool. |
Uses of IPage in org.apache.tapestry.pages |
---|
Classes in org.apache.tapestry.pages that implement IPage | |
---|---|
class |
Exception
Default exception reporting page. |
class |
StaleLink
Stores a message (taken from the StaleLinkException )
that is displayed as part of the page. |
Uses of IPage in org.apache.tapestry.record |
---|
Methods in org.apache.tapestry.record with parameters of type IPage | |
---|---|
IPageRecorder |
PageRecorderSource.createPageRecorder(IPage page)
|
void |
PageRecorderImpl.rollback(IPage page)
|
Uses of IPage in org.apache.tapestry.wml |
---|
Classes in org.apache.tapestry.wml that implement IPage | |
---|---|
class |
Deck
Concrete class for WML decks. |
Uses of IPage in org.apache.tapestry.wml.pages |
---|
Classes in org.apache.tapestry.wml.pages that implement IPage | |
---|---|
class |
WMLException
Default exception reporting page for WML applications. |
class |
WMLStaleLink
Stores a message (taken from the StaleLinkException )
that is displayed as part of the page. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |