Abstract base class enabling logging and supporting the interpretation of
common configuration settings on all specific implementations of
JXPathBindingBase.
Common supported configurations: getCommonAttributes(Element)
Attribute direction="load|save|both": defaults to 'both'
Attribute lenient="true|false|[undefined]": defaults to [undefined]
which means: "lenient mode inherited from parent"
JXPathBindingBuilderBase.CommonAttributes
CommonAttributes is a simple helper class for holding the distinct data
member fields indicating the activity of the separate load and save
actions of a given binding.
Helper method for interpreting the common attributes which are supported
on each of the Bindings. These are
@direction can hold one of the following values:
'load': This binding will only load.
'save': This binding will only save.
'both': This binding will perform both operations.
@lenient can either be:
'true': This binding will set the jxpath context to
be lenient towards the usage of inexisting paths on the back-end model.
'false': This binding will set the jxpath context to be
strict and throwing exceptions for the usage of inexisting paths on the
back-end model.
(unset): This binding will not change the leniency behaviour
on the jxpath this binding receives from his parent binding.