1 16 package org.apache.cocoon.woody.datatype; 17 18 import org.w3c.dom.Element ; 19 import org.apache.cocoon.woody.datatype.convertor.Convertor; 20 21 32 public interface DatatypeBuilder { 33 public Datatype build(Element datatypeElement, boolean arrayType, DatatypeManager datatypeManager) throws Exception ; 34 35 public Convertor getPlainConvertor(); 36 37 public Convertor buildConvertor(Element convertorEl) throws Exception ; 38 } 39 | Popular Tags |