Uses of Class
org.apache.cocoon.forms.binding.JXPathBindingBase

Packages that use JXPathBindingBase
org.apache.cocoon.forms.binding   
 

Uses of JXPathBindingBase in org.apache.cocoon.forms.binding
 

Subclasses of JXPathBindingBase in org.apache.cocoon.forms.binding
 class AggregateJXPathBinding
          AggregateJXPathBinding provides an implementation of a Binding that narrows the context towards provided childbindings.
 class CaseJXPathBinding
          CaseJXPathBinding provides an implementation of a Binding that narrows the context towards provided childbindings.
 class ClassJXPathBinding
          ClassJXPathBinding provides an implementation of a Binding which allows the specification of a class of reusable bindings.
 class ComposedJXPathBindingBase
          ComposedJXPathBindingBase provides a helper base class for subclassing into specific JXPathBindingBase implementations that have nested child-bindings.
 class ContextJXPathBinding
          ContextJXPathBinding provides an implementation of a Binding that narrows the binding scope to some xpath-context on the target objectModel to load and save from.
 class CustomJXPathBinding
          CustomJXPathBinding
 class DeleteNodeJXPathBinding
          DeleteNodeJXPathBinding provides an implementation of a Binding that deletes the current context-bean from the target back-end model upon save.
 class EnhancedRepeaterJXPathBinding
           
 class GroupJXPathBinding
          GroupJXPathBinding provides an implementation of a Binding that narrows the context towards provided childbindings.
 class ImportJXPathBinding
          Dummy class cause binding doesn't accept null results from binding builders
 class InsertBeanJXPathBinding
          InsertBeanJXPathBinding provides an implementation of a Binding that inserts a new instance of the specified bean (classname) or a new instance created by the model itself into the target back-end model upon save.
 class InsertNodeJXPathBinding
          InsertNodeJXPathBinding provides an implementation of a Binding that inserts a clone of some 'template document-fragment' into the target back-end model upon save.
 class JavaScriptJXPathBinding
           
 class MultiValueJXPathBinding
          Simple binding for multi fields: on save, first deletes the target data before recreating it from scratch.
 class NewJXPathBinding
          NewJXPathBinding provides an implementation of a Binding that references a class of bindings.
 class RepeaterJXPathBinding
          RepeaterJXPathBinding provides an implementation of a Binding that allows for bidirectional binding of a repeater-widget to/from repeating structures in the back-end object model.
 class SetAttributeJXPathBinding
          SetAttributeJXPathBinding provides an implementation of a Binding that sets a particular attribute to a fixed value upon save.
 class SimpleRepeaterJXPathBinding
          Simple binding for repeaters: on save, first deletes the target data before recreating it from scratch.
 class StructJXPathBinding
          StructJXPathBinding provides an implementation of a Binding that narrows the context towards provided childbindings.
 class TempRepeaterJXPathBinding
          Experimental simple binding for repeaters: on save, first deletes the target data before recreating it from scratch.
 class TreeModelJXPath
           
 class UnionJXPathBinding
          UnionJXPathBinding provides an implementation of a Binding that narrows the context towards provided childbindings.
 class ValueJXPathBinding
          ValueJXPathBinding provides an implementation of a Binding that loads and saves the information behind a specific xpath expresion (pointing to an attribute or text-node) to and from a specific CForms widget as identified by its id.
 

Methods in org.apache.cocoon.forms.binding that return JXPathBindingBase
 JXPathBindingBase ValueJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Creates an instance of ValueJXPathBinding based on the attributes and nested configuration of the provided bindingElm.
 JXPathBindingBase UnionJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase TreeModelJXPathBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase TempRepeaterJXPathBindingBuilder.buildBinding(Element bindingElem, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase StructJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase SimpleRepeaterJXPathBindingBuilder.buildBinding(Element bindingElem, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase SetAttributeJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Creates an instance of SetAttributeJXPathBinding according to the attributes of the provided bindingElm.
 JXPathBindingBase RepeaterJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Creates an instance of RepeaterJXPathBinding according to the attributes and nested comfiguration elements of the bindingElm.
 JXPathBindingBase NewJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase MultiValueJXPathBindingBuilder.buildBinding(Element bindingElem, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase JavaScriptJXPathBindingBuilder.buildBinding(Element element, JXPathBindingManager.Assistant assistant)
           
abstract  JXPathBindingBase JXPathBindingBuilderBase.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Builds a configured binding object based on the configuration as described in the bindingElement.
 JXPathBindingBase InsertNodeJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Creates an instance of InsertNodeJXPathBinding configured with the nested template of the bindingElm.
 JXPathBindingBase InsertBeanJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Creates an instance of InsertBeanJXPathBinding configured with the nested template of the bindingElm.
 JXPathBindingBase ImportJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase GroupJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase ExpandJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase DeleteNodeJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Creates an instance of DeleteNodeJXPathBinding.
 JXPathBindingBase CustomJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Builds the custom Binding class and wraps it into a CustomJXPathBinding
 JXPathBindingBase ContextJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
          Creates an instance of ContextJXPathBinding with the configured path and nested child bindings from the declarations in the bindingElm
 JXPathBindingBase ClassJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase CaseJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase AggregateJXPathBindingBuilder.buildBinding(Element bindingElm, JXPathBindingManager.Assistant assistant)
           
 JXPathBindingBase JXPathBindingManager.Assistant.getBindingForConfigurationElement(Element configElm)
          Creates a Binding following the specification in the provided config element.
 JXPathBindingBase[] TempRepeaterJXPathBinding.getChildBindings()
           
 JXPathBindingBase[] SimpleRepeaterJXPathBinding.getChildBindings()
           
 JXPathBindingBase[] ComposedJXPathBindingBase.getChildBindings()
          Returns child bindings.
 JXPathBindingBase[] TempRepeaterJXPathBinding.getInsertChildBindings()
           
 JXPathBindingBase RepeaterJXPathBinding.getInsertRowBinding()
           
 JXPathBindingBase[] JXPathBindingManager.Assistant.makeChildBindings(Element parentElement)
          proxy for compatibility
 JXPathBindingBase[] JXPathBindingManager.Assistant.makeChildBindings(Element parentElement, JXPathBindingBase[] existingBindings)
          Makes an array of childBindings for the child-elements of the provided configuration element.
 

Methods in org.apache.cocoon.forms.binding with parameters of type JXPathBindingBase
 JXPathBindingBase[] JXPathBindingManager.Assistant.makeChildBindings(Element parentElement, JXPathBindingBase[] existingBindings)
          Makes an array of childBindings for the child-elements of the provided configuration element.
 

Constructors in org.apache.cocoon.forms.binding with parameters of type JXPathBindingBase
AggregateJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, String xpath, JXPathBindingBase[] childBindings)
          Constructs AggregateJXPathBinding
CaseJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, String xpath, JXPathBindingBase[] childBindings)
          Constructs CaseJXPathBinding
ClassJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, JXPathBindingBase[] childBindings)
          Constructs ClassJXPathBinding
ComposedJXPathBindingBase(JXPathBindingBuilderBase.CommonAttributes commonAtts, JXPathBindingBase[] childBindings)
          Constructs ComposedJXPathBindingBase
ContextJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String contextPath, JXPathBindingBase[] childBindings)
          Constructs ContextJXPathBinding for the specified xpath sub-context
ContextJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String contextPath, String factoryClassName, JXPathBindingBase[] childBindings)
          Constructs ContextJXPathBinding for the specified xpath sub-context and optional JXPath factory class.
EnhancedRepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings, String adapterClass)
           
EnhancedRepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings, String adapterClass)
           
EnhancedRepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings, String adapterClass)
           
EnhancedRepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings, String adapterClass)
           
GroupJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, String xpath, JXPathBindingBase[] childBindings)
          Constructs GroupJXPathBinding
MultiValueJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String multiValueId, String multiValuePath, String rowPath, JXPathBindingBase[] updateBindings, Convertor convertor, Locale convertorLocale)
           
NewJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, JXPathBindingBase[] childBindings)
          Constructs NewJXPathBinding
RepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings)
          Constructs RepeaterJXPathBinding
RepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings)
          Constructs RepeaterJXPathBinding
RepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings)
          Constructs RepeaterJXPathBinding
RepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathForInsert, JXPathBindingBase[] childBindings, JXPathBindingBase insertBinding, JXPathBindingBase[] deleteBindings, JXPathBindingBase[] identityBindings)
          Constructs RepeaterJXPathBinding
SimpleRepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, boolean clearOnLoad, boolean deleteIfEmpty, JXPathBindingBase rowBinding)
           
StructJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, String xpath, JXPathBindingBase[] childBindings)
          Constructs StructJXPathBinding
TempRepeaterJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String repeaterId, String repeaterPath, String rowPath, String rowPathInsert, boolean virtualRows, boolean clearOnLoad, boolean deleteIfEmpty, JXPathBindingBase rowBinding, JXPathBindingBase insertBinding)
           
UnionJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, String xpath, JXPathBindingBase[] childBindings)
          Constructs UnionJXPathBinding
ValueJXPathBinding(JXPathBindingBuilderBase.CommonAttributes commonAtts, String widgetId, String xpath, JXPathBindingBase[] updateBindings, Convertor convertor, Locale convertorLocale)
          Constructs FieldJXPathBinding.
 



Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.