1 16 package org.apache.cocoon.woody.formmodel; 17 18 import org.xml.sax.ContentHandler ; 19 import org.xml.sax.SAXException ; 20 21 29 public interface WidgetDefinition { 30 31 34 public FormDefinition getFormDefinition(); 35 36 39 public void setParent(WidgetDefinition definition); 40 41 44 public String getLocation(); 45 46 49 public String getId(); 50 51 54 public Widget createInstance(); 55 56 59 public void generateDisplayData(String name, ContentHandler contentHandler) throws SAXException ; 60 61 64 public void generateDisplayData(ContentHandler contentHandler) throws SAXException ; 65 66 69 public void generateLabel(ContentHandler contentHandler) throws SAXException ; 70 } 71 | Popular Tags |