| java.lang.Object org.apache.cocoon.woody.binding.JXPathBindingBuilderBase
All known Subclasses: org.apache.cocoon.woody.binding.UniqueFieldJXPathBindingBuilder, org.apache.cocoon.woody.binding.AggregateJXPathBindingBuilder, org.apache.cocoon.woody.binding.JavaScriptJXPathBindingBuilder, org.apache.cocoon.woody.binding.CaseJXPathBindingBuilder, org.apache.cocoon.woody.binding.DeleteNodeJXPathBindingBuilder, org.apache.cocoon.woody.binding.RepeaterJXPathBindingBuilder, org.apache.cocoon.woody.binding.StructJXPathBindingBuilder, org.apache.cocoon.woody.binding.NewJXPathBindingBuilder, org.apache.cocoon.woody.binding.InsertBeanJXPathBindingBuilder, org.apache.cocoon.woody.binding.TempRepeaterJXPathBindingBuilder, org.apache.cocoon.woody.binding.SetAttributeJXPathBindingBuilder, org.apache.cocoon.woody.binding.ContextJXPathBindingBuilder, org.apache.cocoon.woody.binding.MultiValueJXPathBindingBuilder, org.apache.cocoon.woody.binding.ClassJXPathBindingBuilder, org.apache.cocoon.woody.binding.InsertNodeJXPathBindingBuilder, org.apache.cocoon.woody.binding.ValueJXPathBindingBuilder, org.apache.cocoon.woody.binding.UnionJXPathBindingBuilder, org.apache.cocoon.woody.binding.SimpleRepeaterJXPathBindingBuilder,
JXPathBindingBuilderBase | abstract public class JXPathBindingBuilderBase implements LogEnabled(Code) | | Abstract base class enabling logging and supporting the intrepretation of
common configuration settings on all specific implementations of
org.apache.cocoon.woody.binding.JXPathBindingBase .
Common supported configurations:
version: CVS $Id: JXPathBindingBuilderBase.java 433543 2006-08-22 06:22:54Z crossley $ |
Inner Class :static class CommonAttributes | |
buildBinding | abstract public JXPathBindingBase buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant) throws BindingException(Code) | | Builds a configured binding object based on the configuration as
described in the bindingElement. The BuilderMap can be used to
find appropriate builders for possible subBinders.
Parameters: bindingElm - Parameters: assistant - JXPathBindingBase |
enableLogging | public void enableLogging(Logger logger)(Code) | | Receives the Avalon logger to use.
|
getCommonAttributes | static CommonAttributes getCommonAttributes(Element bindingElm) throws BindingException(Code) | | 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.
Parameters: bindingElm - an instance of CommonAttributes throws: BindingException - |
getLogger | protected Logger getLogger()(Code) | | Makes the logger available to the subclasses.
Logger |
|
|