Uses of Class
org.apache.tapestry5.json.JSONObject

Packages that use JSONObject
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. 
 

Uses of JSONObject in org.apache.tapestry5
 

Methods in org.apache.tapestry5 with parameters of type JSONObject
 void RenderSupport.addInit(String functionName, JSONObject parameter)
          Deprecated. Use JavaScriptSupport.addInitializerCall(String, JSONObject) instead
 

Uses of JSONObject in org.apache.tapestry5.alerts
 

Methods in org.apache.tapestry5.alerts that return JSONObject
 JSONObject Alert.toJSON()
           
 

Uses of JSONObject in org.apache.tapestry5.corelib.mixins
 

Methods in org.apache.tapestry5.corelib.mixins with parameters of type JSONObject
protected  void Autocomplete.configure(JSONObject config)
          Invoked to allow subclasses to further configure the parameters passed to the JavaScript Ajax.Autocompleter options.
 

Uses of JSONObject in org.apache.tapestry5.internal.json
 

Methods in org.apache.tapestry5.internal.json that return JSONObject
 JSONObject StringToJSONObject.coerce(String input)
           
 

Uses of JSONObject in org.apache.tapestry5.internal.services
 

Methods in org.apache.tapestry5.internal.services with parameters of type JSONObject
 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)
           
 

Uses of JSONObject in org.apache.tapestry5.internal.services.ajax
 

Methods in org.apache.tapestry5.internal.services.ajax with parameters of type JSONObject
 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)
           
 

Uses of JSONObject in org.apache.tapestry5.json
 

Methods in org.apache.tapestry5.json that return JSONObject
 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.
 

Constructors in org.apache.tapestry5.json with parameters of type JSONObject
JSONObject(JSONObject source, String... propertyNames)
          Construct a JSONObject from a subset of another JSONObject.
 

Uses of JSONObject in org.apache.tapestry5.services
 

Methods in org.apache.tapestry5.services with parameters of type JSONObject
 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.
 

Uses of JSONObject in org.apache.tapestry5.services.ajax
 

Methods in org.apache.tapestry5.services.ajax with parameters of type JSONObject
 void JSONCallback.run(JSONObject reply)
          Modify the reply, typically by adding additional keys.
 

Uses of JSONObject in org.apache.tapestry5.services.javascript
 

Methods in org.apache.tapestry5.services.javascript with parameters of type JSONObject
 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.