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 XML name to CamelCase.
A function for variable name translation that converts the XML 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 XML 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 XML Object name to the FX variable name. |
|
| public | onDone | function(:Object):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 | rootPackage | String | ![]() | ![]() |
The root package name for the XML data stream.
The root package name for the XML data stream. The handler will create a JavaFX object using this package name combined with the first element name This object will hold the JavaFX contents resulting from parsing the XML data stream. |
||
| public-read | startTime | Long | ![]() |
Holds the start time for parsing. |
Inherited Variables
Function Summary
- public parse(in: java.io.InputStream) : Void

