1 16 package org.apache.cocoon.forms.formmodel; 17 18 import org.apache.cocoon.forms.datatype.SelectionList; 19 20 27 public interface SelectableWidget extends Widget { 28 29 34 public void setSelectionList(SelectionList selectionList); 35 36 41 public void setSelectionList(String uri); 42 43 52 public void setSelectionList(Object model, String valuePath, String labelPath); 53 } 54 | Popular Tags |