1 16 package org.apache.cocoon.woody.formmodel; 17 18 import org.w3c.dom.Element ; 19 20 26 public class NewDefinitionBuilder extends AbstractWidgetDefinitionBuilder { 27 28 public WidgetDefinition buildWidgetDefinition(Element element) throws Exception { 29 NewDefinition definition = new NewDefinition(); 30 setLocation(element, definition); 31 setId(element, definition); 32 return definition; 33 } 34 } 35 | Popular Tags |