JavaFX: Bringing Rich Experiences To All the Screens Of Your Life

Profile: desktop, common

Overview

Script Variable Summary

accessnametypeCan ReadCan InitCan WriteDefault Valuedescription
publicCAMEL_CASEfunction(: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"

 
publicIDENTITYfunction(:String,:String):String

A function for variable name translation that merely returns the XML name.

Variable Summary

accessnametypeCan ReadCan InitCan WriteDefault Valuedescription
publicdateFormatString

Format for parsing datetime strings based on java.text.SimpleDateFormat

public-initdebugBoolean
publicgetVariableNamefunction(:String,:String):String

holds a function to translate the XML Object name to the FX variable name.

publiconDonefunction(: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-readparseCompleteTimeLong

Holds the finish time for parsing.

public-initrootPackageString

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-readstartTimeLong

Holds the start time for parsing.

Inherited Variables

Function Summary

public parse(in: java.io.InputStream) : Void

Fetches the XML data from the URL and parses into a JavaFX Object.

Fetches the XML data from the URL and parses into a JavaFX Object. When complete, the onDone function will be called.

Parameters
in
 

Inherited Functions