| Package | Description |
|---|---|
| org.apache.tapestry |
Tapestry is a comprehensive web application framework, written in Java.
|
| org.apache.tapestry.engine |
Implementations of the
IEngine interface, including
the standard implementation:
BaseEngine. |
| 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.services |
Interfaces for Tapestry-related HiveMind services.
|
| org.apache.tapestry.services.impl | |
| org.apache.tapestry.wml |
Classes and components for main elements of the Wireless Markup Language (WML 1.2).
|
| Modifier and Type | Method and Description |
|---|---|
IEngine |
AbstractPage.getEngine() |
IEngine |
IPage.getEngine()
Returns the
IEnginethat the page is currently attached to. |
IEngine |
IRequestCycle.getEngine()
Returns the engine which is processing this request cycle.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractPage.attach(IEngine engine,
IRequestCycle cycle)
Called by the
engineto attach the page to itself. |
void |
IPage.attach(IEngine engine,
IRequestCycle cycle)
Attaches the page to the
engine. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEngine
Basis for building real Tapestry applications.
|
class |
BaseEngine
Concrete implementation of
IEngine used for ordinary applications. |
| Modifier and Type | Method and Description |
|---|---|
IEngine |
RequestCycle.getEngine() |
| Constructor and Description |
|---|
RequestCycle(IEngine engine,
QueryParameterMap parameters,
java.lang.String serviceName,
IMonitor monitor,
RequestCycleEnvironment environment,
RequestContext context)
Standard constructor used to render a response page.
|
| Modifier and Type | Method and Description |
|---|---|
protected MultiKey |
PageSource.buildKey(IEngine engine,
java.lang.String pageName)
Builds a key for a named page in the application's current locale.
|
| Modifier and Type | Method and Description |
|---|---|
IEngine |
EngineFactory.constructNewEngineInstance(java.util.Locale locale)
Creates and initializes a new engine instance for the specified locale.
|
IEngine |
EngineManager.getEngineInstance()
Locates or creates an engine instance for the current request.
|
| Modifier and Type | Method and Description |
|---|---|
IRequestCycle |
RequestCycleFactory.newRequestCycle(IEngine engine)
Constructs the new instance using the request context.
|
void |
EngineManager.storeEngineInstance(IEngine engine)
Store the engine back at the end of the current request.
|
| Modifier and Type | Method and Description |
|---|---|
IEngine |
EngineFactoryImpl.constructNewEngineInstance(java.util.Locale locale) |
IEngine |
EngineManagerImpl.getEngineInstance() |
| Modifier and Type | Method and Description |
|---|---|
IRequestCycle |
RequestCycleFactoryImpl.newRequestCycle(IEngine engine) |
void |
EngineManagerImpl.storeEngineInstance(IEngine engine) |
| Modifier and Type | Class and Description |
|---|---|
class |
WMLEngine
Deprecated.
To be removed in 4.1. No longer necessary; the differences between WML applications
and HTML applications are now handled via a startup mode. See
SetupServletApplicationGlobals. |