1 16 package org.apache.cocoon.forms.binding; 17 18 import org.apache.cocoon.forms.binding.library.Library; 19 import org.apache.cocoon.forms.formmodel.Widget; 20 21 28 public interface Binding { 29 30 34 void setParent(Binding binding); 35 36 39 String getId(); 40 41 44 Library getLocalLibrary(); 45 46 49 boolean isValid(); 50 51 55 Binding getClass(String id); 56 57 63 void loadFormFromModel(Widget frmModel, Object objModel) 64 throws BindingException; 65 66 71 void saveFormToModel(Widget frmModel, Object objModel) 72 throws BindingException; 73 } 74 | Popular Tags |