1 16 package org.apache.cocoon.woody.formmodel; 17 18 import org.apache.cocoon.woody.datatype.SelectionList; 19 20 24 public interface SelectableWidget extends Widget { 25 26 public void setSelectionList(SelectionList selectionList); 27 28 public void setSelectionList(String uri); 29 30 public void setSelectionList(Object model, String valuePath, String labelPath); 31 } | Popular Tags |