Package | Description |
---|---|
org.apache.tapestry5 |
Root package for Tapestry, containing common interfaces and data types used throughout the framework.
|
org.apache.tapestry5.alerts |
Support for a standard way of presenting alerts to the user, via the
AlertManager service combined with the
Alerts component. |
org.apache.tapestry5.corelib.mixins |
The set of core mixins available in all Tapestry applications
|
org.apache.tapestry5.internal.json |
[INTERNAL USE ONLY] support classes for the JSON module; API subject to change
|
org.apache.tapestry5.internal.services |
[INTERNAL USE ONLY] internal service classes; API subject to change
|
org.apache.tapestry5.internal.services.ajax |
[INTERNAL USE ONLY] AJAX support services; API subject to change
|
org.apache.tapestry5.json |
Repackaged, improved (and tested) version of code originally from json.org
|
org.apache.tapestry5.services |
Core services
|
org.apache.tapestry5.services.ajax |
Utilities for handling Ajax-oriented requests, including partial render requests.
|
org.apache.tapestry5.services.javascript |
Support for Javascript (and CSS), including dynamically-added JavaScript and
services that manage dynamically-added links to JavaScript (and CSS) assets.
|
Modifier and Type | Method and Description |
---|---|
void |
RenderSupport.addInit(String functionName,
JSONObject parameter)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
JSONObject |
Alert.toJSON() |
Modifier and Type | Method and Description |
---|---|
protected void |
Autocomplete.configure(JSONObject config)
Invoked to allow subclasses to further configure the parameters passed to the JavaScript Ajax.Autocompleter
options.
|
Modifier and Type | Method and Description |
---|---|
JSONObject |
StringToJSONObject.coerce(String input) |
Modifier and Type | Method and Description |
---|---|
void |
RenderSupportImpl.addInit(String functionName,
JSONObject parameter) |
void |
PartialMarkupDocumentLinker.commit(JSONObject reply)
Commits changes, adding one or more keys to the reply.
|
void |
JSONObjectEventResultProcessor.processResultValue(JSONObject value) |
void |
PartialMarkupRendererTerminator.renderMarkup(MarkupWriter writer,
JSONObject reply) |
void |
RenderCommandComponentEventResultProcessor.renderMarkup(MarkupWriter writer,
JSONObject reply,
PartialMarkupRenderer renderer)
As a filter, this class does three things:
It creates an outer element to capture the partial page content that will be rendered
It does setup and cleanup with the
AjaxFormUpdateController
It extracts the child markup and stuffs it into the reply's "content" property.
|
void |
PageRenderQueue.renderPartial(MarkupWriter writer,
JSONObject reply)
Performs a partial markup render, as configured via
PageRenderQueue.addPartialRenderer(org.apache.tapestry5.runtime.RenderCommand) . |
void |
PageRenderQueueImpl.renderPartial(MarkupWriter writer,
JSONObject reply) |
void |
DocumentLinker.setInitialization(InitializationPriority priority,
JSONObject initialization)
Adds a call to the Tapestry.init() function.
|
void |
DocumentLinkerImpl.setInitialization(InitializationPriority priority,
JSONObject initialization) |
void |
PartialMarkupDocumentLinker.setInitialization(InitializationPriority priority,
JSONObject initialization) |
Modifier and Type | Method and Description |
---|---|
void |
JavaScriptSupportImpl.addInitializerCall(InitializationPriority priority,
String functionName,
JSONObject parameter) |
void |
JavaScriptSupportImpl.addInitializerCall(String functionName,
JSONObject parameter) |
void |
SingleZonePartialRendererFilter.renderMarkup(MarkupWriter writer,
JSONObject reply,
PartialMarkupRenderer renderer) |
Modifier and Type | Method and Description |
---|---|
JSONObject |
JSONObject.accumulate(String key,
Object value)
Accumulate values under a key.
|
JSONObject |
JSONObject.append(String key,
Object value)
Append values to the array under a key.
|
JSONObject |
JSONArray.getJSONObject(int index)
Get the JSONObject associated with an index.
|
JSONObject |
JSONObject.getJSONObject(String key)
Get the JSONObject value associated with a key.
|
JSONObject |
JSONObject.put(String key,
Object value)
Put a key/value pair in the JSONObject.
|
Constructor and Description |
---|
JSONObject(JSONObject source,
String... propertyNames)
Construct a JSONObject from a subset of another JSONObject.
|
Modifier and Type | Method and Description |
---|---|
void |
PartialMarkupRenderer.renderMarkup(MarkupWriter writer,
JSONObject reply)
Implementations should perform work before or after passing the writer to the renderer.
|
void |
PartialMarkupRendererFilter.renderMarkup(MarkupWriter writer,
JSONObject reply,
PartialMarkupRenderer renderer)
Implementations should perform work before or after passing the writer to the renderer.
|
Modifier and Type | Method and Description |
---|---|
void |
JSONCallback.run(JSONObject reply)
Modify the reply, typically by adding additional keys.
|
Modifier and Type | Method and Description |
---|---|
void |
JavaScriptSupport.addInitializerCall(InitializationPriority priority,
String functionName,
JSONObject parameter)
Adds a call to a client-side function inside the Tapestry.Initializer namespace.
|
void |
JavaScriptSupport.addInitializerCall(String functionName,
JSONObject parameter)
Adds a call to a client-side function inside the Tapestry.Initializer namespace.
|
Copyright © 2003-2012 The Apache Software Foundation.