1 16 package org.apache.cocoon.woody.formmodel; 17 18 import java.util.Collection ; 19 import java.util.List ; 20 21 27 public interface ContainerDefinition extends WidgetDefinition { 28 29 32 public void resolve(List parents, WidgetDefinition parent) throws Exception ; 33 34 37 public void createWidget(Widget parent, String id); 38 39 42 public void createWidgets(Widget parent); 43 44 47 public void addWidgetDefinition(WidgetDefinition definition) throws Exception , DuplicateIdException; 48 49 52 public boolean hasWidget(String id); 53 54 57 public WidgetDefinition getWidgetDefinition(String id); 58 59 62 public Collection getWidgetDefinitions(); 63 } 64 | Popular Tags |