Overview
Script Variable Summary
| access | name | type | Can Read | Can Init | Can Write | Default Value | description |
|---|---|---|---|---|---|---|---|
| public | CAMEL_CASE | function(:String,:String):String | ![]() |
A function for variable name translation that converts the JSON name to CamelCase.
A function for variable name translation that converts the JSON name to CamelCase. There rules are any letter following '_', ':', or '/' will be capitalized, unless the special character is first. For example, "foo" returns "foo", "_foo" returns "foo", "foo/bar" returns "fooBar", and "/foo/bar" return "fooBar" |
|||
| public | IDENTITY | function(:String,:String):String | ![]() |
A function for variable name translation that merely returns the JSON name. |
Variable Summary
| access | name | type | Can Read | Can Init | Can Write | Default Value | description |
|---|---|---|---|---|---|---|---|
| public | dateFormat | String | ![]() | ![]() | ![]() |
Format for parsing datetime strings based on java.text.SimpleDateFormat |
|
| public-init | debug | Boolean | ![]() | ![]() | |||
| public | getVariableName | function(:String,:String):String | ![]() | ![]() | ![]() |
holds a function to translate the JSON Object name to the FX variable name. |
|
| public | onDone | function(:Object,:boolean):Void | ![]() | ![]() | ![]() |
Invoked when the parsing is successfully completed.
Invoked when the parsing is successfully completed. The model parameter is the object that is created by the parser. The isSequence parameter indicates whether or not the model object is a sequence or not. |
|
| public-read | parseCompleteTime | Long | ![]() |
Holds the finish time for parsing. |
|||
| public-init | rootClass | String | ![]() | ![]() |
The root class name for the JSON data stream.
The root class name for the JSON data stream. The handler will create a JavaFX object using this class name and this object will hold the JavaFX contents resulting from parsing the JSON data stream. |
||
| public-read | startTime | Long | ![]() |
Holds the start time for parsing. |
Inherited Variables
Function Summary
- public parse(in: java.io.InputStream) : Void

