Package | Description |
---|---|
org.apache.tapestry5 |
Root package for Tapestry, containing common interfaces and data types used throughout the framework.
|
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.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,
JSONArray parameterList)
Deprecated.
Use
JavaScriptSupport.addInitializerCall(String, JSONObject) instead (which may require
changes to your JavaScript initializer function) |
Modifier and Type | Method and Description |
---|---|
JSONArray |
StringToJSONArray.coerce(String input) |
Modifier and Type | Method and Description |
---|---|
void |
RenderSupportImpl.addInit(String functionName,
JSONArray parameterList) |
void |
JSONArrayEventResultProcessor.processResultValue(JSONArray value) |
Modifier and Type | Method and Description |
---|---|
void |
JavaScriptSupportImpl.addInitializerCall(InitializationPriority priority,
String functionName,
JSONArray parameter) |
void |
JavaScriptSupportImpl.addInitializerCall(String functionName,
JSONArray parameter) |
Modifier and Type | Method and Description |
---|---|
JSONArray |
JSONArray.getJSONArray(int index)
Get the JSONArray associated with an index.
|
JSONArray |
JSONObject.getJSONArray(String key)
Get the JSONArray value associated with a key.
|
JSONArray |
JSONObject.names()
Produce a JSONArray containing the names of the elements of this JSONObject.
|
JSONArray |
JSONArray.put(int index,
Object value)
Put or replace an object value in the JSONArray.
|
JSONArray |
JSONArray.put(Object value)
Append an object value.
|
Modifier and Type | Method and Description |
---|---|
void |
JavaScriptSupport.addInitializerCall(InitializationPriority priority,
String functionName,
JSONArray parameter)
Adds a call to a client-side function inside the Tapestry.Initializer namespace.
|
void |
JavaScriptSupport.addInitializerCall(String functionName,
JSONArray parameter)
Adds a call to a client-side function inside the Tapestry.Initializer namespace.
|
Copyright © 2003-2012 The Apache Software Foundation.