| org.apache.cocoon.forms.binding.JXPathBindingBase org.apache.cocoon.forms.binding.ComposedJXPathBindingBase
All known Subclasses: org.apache.cocoon.forms.binding.ClassJXPathBinding, org.apache.cocoon.forms.binding.ContextJXPathBinding, org.apache.cocoon.forms.binding.UnionJXPathBinding, org.apache.cocoon.forms.binding.CaseJXPathBinding, org.apache.cocoon.forms.binding.NewJXPathBinding, org.apache.cocoon.forms.binding.AggregateJXPathBinding,
ComposedJXPathBindingBase | public class ComposedJXPathBindingBase extends JXPathBindingBase (Code) | | ComposedJXPathBindingBase provides a helper base class for subclassing
into specific
JXPathBindingBase implementations that have nested
child-bindings.
version: $Id: ComposedJXPathBindingBase.java 450255 2006-09-26 23:48:43Z vgritsenko $ |
Method Summary | |
public void | doLoad(Widget frmModel, JXPathContext jxpc) Actively performs the binding from the ObjectModel to the CForms-form
by passing the task onto it's children. | public void | doSave(Widget frmModel, JXPathContext jxpc) Actively performs the binding from the CForms-form to the ObjectModel
by passing the task onto it's children. | public void | enableLogging(Logger logger) Receives the logger to use for logging activity, and hands it over to
the nested children. | public JXPathBindingBase[] | getChildBindings() Returns child bindings. | public Binding | getClass(String id) Gets a binding class by id. | public String | getXPath() |
doLoad | public void doLoad(Widget frmModel, JXPathContext jxpc) throws BindingException(Code) | | Actively performs the binding from the ObjectModel to the CForms-form
by passing the task onto it's children.
|
doSave | public void doSave(Widget frmModel, JXPathContext jxpc) throws BindingException(Code) | | Actively performs the binding from the CForms-form to the ObjectModel
by passing the task onto it's children.
|
enableLogging | public void enableLogging(Logger logger)(Code) | | Receives the logger to use for logging activity, and hands it over to
the nested children.
|
getClass | public Binding getClass(String id)(Code) | | Gets a binding class by id.
Parameters: id - Id of binding class to get. |
|
|