1 4 package com.tc.config.schema.beanfactory; 5 6 import org.apache.xmlbeans.XmlException; 7 import org.xml.sax.SAXException ; 8 9 import java.io.IOException ; 10 import java.io.InputStream ; 11 12 import javax.xml.parsers.ParserConfigurationException ; 13 14 17 public interface ConfigBeanFactory { 18 19 BeanWithErrors createBean(InputStream in, String sourceDescription) throws IOException , SAXException , 20 ParserConfigurationException , XmlException; 21 22 } 23 | Popular Tags |