JAXX class

From JAXXWiki

A JAXX class is a Java class compiled from a .jaxx file. All JAXX classes extend jaxx.runtime.JAXXObject, which is primarily used as a marker interface but also defines two methods, getObjectById() and processDataBinding().

getObjectById() takes a String parameter, which must be the ID of a tag defined in the class, and returns the corresponding object.

processDataBinding() is primarily used internally (it must be public to allow subclass overrides of databindings to function properly) but can be called manually if needed.