| java.lang.Object org.apache.cocoon.woody.binding.JXPathBindingBase org.apache.cocoon.woody.binding.ComposedJXPathBindingBase
All known Subclasses: org.apache.cocoon.woody.binding.NewJXPathBinding, org.apache.cocoon.woody.binding.ContextJXPathBinding, org.apache.cocoon.woody.binding.ClassJXPathBinding, org.apache.cocoon.woody.binding.UnionJXPathBinding, org.apache.cocoon.woody.binding.AggregateJXPathBinding, org.apache.cocoon.woody.binding.StructJXPathBinding, org.apache.cocoon.woody.binding.CaseJXPathBinding,
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: CVS $Id: ComposedJXPathBindingBase.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
public void | doLoad(Widget frmModel, JXPathContext jxpc) Actively performs the binding from the ObjectModel to the Woody-form
by passing the task onto it's children. | public void | doSave(Widget frmModel, JXPathContext jxpc) Actively performs the binding from the Woody-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. |
doLoad | public void doLoad(Widget frmModel, JXPathContext jxpc) throws BindingException(Code) | | Actively performs the binding from the ObjectModel to the Woody-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 Woody-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. |
|
|