|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BindingException | |
org.apache.cocoon.forms.binding | |
org.apache.cocoon.forms.samples.bindings | |
org.apache.cocoon.samples.flow.java |
Uses of BindingException in org.apache.cocoon.forms.binding |
Methods in org.apache.cocoon.forms.binding that throw BindingException | |
JXPathBindingBase |
ValueJXPathBindingBuilder.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
Creates an instance of ValueJXPathBinding based on the attributes
and nested configuration of the provided bindingElm. |
void |
ValueJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Actively performs the binding from the ObjectModel wrapped in a jxpath context to the CForms-form-widget specified in this object. |
void |
ValueJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Actively performs the binding from the CForms-form to the ObjectModel wrapped in a jxpath context |
JXPathBindingBase |
UnionJXPathBindingBuilder.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
|
void |
UnionJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
void |
UnionJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
JXPathBindingBase |
TempRepeaterJXPathBindingBuilder.buildBinding(Element bindingElem,
JXPathBindingManager.Assistant assistant)
|
void |
TempRepeaterJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jctx)
|
void |
TempRepeaterJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jctx)
|
JXPathBindingBase |
StructJXPathBindingBuilder.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
|
void |
StructJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
void |
StructJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
JXPathBindingBase |
SimpleRepeaterJXPathBindingBuilder.buildBinding(Element bindingElem,
JXPathBindingManager.Assistant assistant)
|
void |
SimpleRepeaterJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jctx)
|
void |
SimpleRepeaterJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jctx)
|
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. |
void |
RepeaterJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Binds the unique-id of the repeated rows, and narrows the context on objectModelContext and Repeater to the repeated rows before handing over to the actual binding-children. |
void |
RepeaterJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Uses the mapped identity of each row to detect if rows have been updated, inserted or removed. |
JXPathBindingBase |
NewJXPathBindingBuilder.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
|
void |
NewJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
void |
NewJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
JXPathBindingBase |
MultiValueJXPathBindingBuilder.buildBinding(Element bindingElem,
JXPathBindingManager.Assistant assistant)
|
void |
MultiValueJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jctx)
|
void |
MultiValueJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jctx)
|
JXPathBindingBase |
JavaScriptJXPathBindingBuilder.buildBinding(Element element,
JXPathBindingManager.Assistant assistant)
|
void |
JavaScriptJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jctx)
|
Binding |
JXPathBindingManager.createBinding(Source source)
|
JXPathBindingBase |
JXPathBindingManager.Assistant.getBindingForConfigurationElement(Element configElm)
Creates a Binding following the specification in the
provided config element. |
JXPathBindingBase[] |
JXPathBindingManager.Assistant.makeChildBindings(Element parentElement)
Makes an array of childBindings for the child-elements of the provided configuration element. |
abstract JXPathBindingBase |
JXPathBindingBuilderBase.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
Builds a configured binding object based on the configuration as described in the bindingElement. |
abstract void |
JXPathBindingBase.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Performs the actual load binding regardless of the configured value of the "direction" attribute. |
void |
JXPathBindingBase.loadFormFromModel(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Redefines the Binding action as working on a JXPathContext Type rather then on generic objects. |
void |
JXPathBindingBase.loadFormFromModel(Widget frmModel,
Object objModel)
Hooks up with the more generic Binding of any objectModel by wrapping it up in a JXPathContext object and then transfering control over to the new overloaded version of this method. |
abstract void |
JXPathBindingBase.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Performs the actual save binding regardless of the configured value of the "direction" attribute. |
void |
JXPathBindingBase.saveFormToModel(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Redefines the Binding action as working on a JXPathContext Type rather then on generic objects. |
void |
JXPathBindingBase.saveFormToModel(Widget frmModel,
Object objModel)
Hooks up with the more generic Binding of any objectModel by wrapping it up in a JXPathContext object and then transfering control over to the new overloaded version of this method. |
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. |
void |
InsertBeanJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Registers a JXPath Factory on the JXPath Context. |
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 |
void |
CustomJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Delegates the actual loading operation to the provided Custom Binding Class after narrowing down on the selected widget (@id) and context (@path) |
void |
CustomJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Delegates the actual saving operation to the provided Custom Binding Class after narrowing down on the selected widget (@id) and context (@path) |
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 |
void |
ContextJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Actively performs the binding from the ObjectModel wrapped in a jxpath context to the CocoonForm. |
void |
ContextJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Actively performs the binding from the CocoonForm to the ObjectModel wrapped in a jxpath context. |
void |
ComposedJXPathBindingBase.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Actively performs the binding from the ObjectModel to the CForms-form by passing the task onto it's children. |
void |
ComposedJXPathBindingBase.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Actively performs the binding from the CForms-form to the ObjectModel by passing the task onto it's children. |
JXPathBindingBase |
ClassJXPathBindingBuilder.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
|
void |
ClassJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
JXPathBindingBase |
CaseJXPathBindingBuilder.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
|
void |
CaseJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
void |
CaseJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
Binding |
BindingManager.createBinding(Source bindingFile)
Creates a binding from the XML config found at source parameter. |
void |
Binding.loadFormFromModel(Widget frmModel,
Object objModel)
Loads the information-elements from the objModel to the frmModel. |
void |
Binding.saveFormToModel(Widget frmModel,
Object objModel)
Saves the infortmation-elements to the objModel from the frmModel. |
JXPathBindingBase |
AggregateJXPathBindingBuilder.buildBinding(Element bindingElm,
JXPathBindingManager.Assistant assistant)
|
void |
AggregateJXPathBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
void |
AggregateJXPathBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
Narrows the scope on the form-model to the member widget-field, and narrows the scope on the object-model to the member xpath-context before continuing the binding over the child-bindings. |
void |
AbstractCustomBinding.loadFormFromModel(Widget frmModel,
Object objModel)
Binding service method called upon loading. |
void |
AbstractCustomBinding.saveFormToModel(Widget frmModel,
Object objModel)
Binding service method called upon saving. |
protected abstract void |
AbstractCustomBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext context)
|
protected abstract void |
AbstractCustomBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext context)
|
Uses of BindingException in org.apache.cocoon.forms.samples.bindings |
Methods in org.apache.cocoon.forms.samples.bindings that throw BindingException | |
void |
CustomValueWrapBinding.doLoad(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
This unwraps the value from the model by removing the 2 prefix and suffix-chars before setting it onto the model Method signature and semantics complies to AbstractCustomBinding.doLoad(Widget, JXPathContext) |
void |
CustomValueWrapBinding.doSave(Widget frmModel,
org.apache.commons.jxpath.JXPathContext jxpc)
This wraps the value from the form between 2 prefix and suffix-chars before saving to the model Method signature and semantics complies to AbstractCustomBinding.doSave(Widget, JXPathContext) |
static Binding |
CustomValueWrapBinding.createBinding(Element config)
Builds the actual binding class based on its XML config. |
Uses of BindingException in org.apache.cocoon.samples.flow.java |
Methods in org.apache.cocoon.samples.flow.java that throw BindingException | |
void |
PersistenceFlow.doInsertEmployee()
|
void |
PersistenceFlow.doUpdateEmployee()
|
void |
FormFlow.doEditForm2()
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |