| org.apache.cocoon.woody.binding.Binding
All known Subclasses: org.apache.cocoon.woody.binding.JXPathBindingBase,
Binding | public interface Binding (Code) | | Binding declares the methods to 'bind' (i.e. 'load' and 'save')
information elements from some back-end model (2nd argument) to and from
a existing Woody Widget.
version: CVS $Id: Binding.java 433543 2006-08-22 06:22:54Z crossley $ |
getClass | Binding getClass(String id)(Code) | | Gets a binding class.
Parameters: id - Id of binding class to get. |
loadFormFromModel | void loadFormFromModel(Widget frmModel, Object objModel) throws BindingException(Code) | | Loads the information-elements from the objModel to the frmModel.
Parameters: frmModel - Parameters: objModel - |
saveFormToModel | void saveFormToModel(Widget frmModel, Object objModel) throws BindingException(Code) | | Saves the infortmation-elements to the objModel from the frmModel.
Parameters: frmModel - Parameters: objModel - |
setParent | void setParent(Binding binding)(Code) | | Sets parent binding.
Parameters: binding - Parent of this binding. |
|
|