1 16 package org.apache.cocoon.woody.binding; 17 18 import org.apache.cocoon.woody.formmodel.Widget; 19 20 27 public interface Binding { 28 29 33 void setParent(Binding binding); 34 35 38 String getId(); 39 40 44 Binding getClass(String id); 45 46 52 void loadFormFromModel(Widget frmModel, Object objModel) 53 throws BindingException; 54 55 60 void saveFormToModel(Widget frmModel, Object objModel) 61 throws BindingException; 62 } 63 | Popular Tags |