Package | Description |
---|---|
com.hfg.javascript | |
com.hfg.webapp |
Modifier and Type | Class and Description |
---|---|
class |
JsArray
A Javascript array container useful for creating JSON.
|
class |
JsObjMap
A Javascript object (Map) container useful for creating JSON.
|
Modifier and Type | Method and Description |
---|---|
static JsCollection |
JSONUtil.toJsonObj(CharSequence inJSON)
Converts a JSON string back into objects.
|
static JsCollection |
JSONUtil.toJsonObj(File inJsonFile)
Converts a JSON file back into objects.
|
static JsCollection |
JSONUtil.toJsonObj(InputStream inJson)
Converts a JSON stream back into objects.
|
static JsCollection |
JSONUtil.toJsonObj(Reader inJson)
Converts a JSON Reader into objects.
|
Modifier and Type | Method and Description |
---|---|
static void |
WebappUtil.emitJSON(javax.servlet.http.HttpServletResponse inServletResponse,
JsCollection inJSON)
Writes the specified JSON to the servlet response after setting the mime type and character encoding.
|
jataylor@hairyfatguy.com