1 16 package org.apache.cocoon.forms.formmodel; 17 18 import java.util.Collection ; 19 import java.util.List ; 20 21 26 public interface ContainerDefinition extends WidgetDefinition { 27 28 31 public void resolve(List parents, WidgetDefinition parent) throws Exception ; 32 33 36 public void createWidget(Widget parent, String id); 37 38 41 public void createWidgets(Widget parent); 42 43 46 public void addWidgetDefinition(WidgetDefinition definition) throws Exception , DuplicateIdException; 47 48 51 public boolean hasWidget(String id); 52 53 56 public WidgetDefinition getWidgetDefinition(String id); 57 58 61 public Collection getWidgetDefinitions(); 62 } 63 | Popular Tags |