1 17 18 package org.eclipse.emf.ecore.xmi; 19 20 import java.util.Map ; 21 import javax.xml.parsers.ParserConfigurationException ; 22 import javax.xml.parsers.SAXParser ; 23 import org.xml.sax.SAXException ; 24 25 40 public interface XMLParserPool 41 { 42 54 public SAXParser get(Map features, Map properties, boolean useLexicalHandler) throws ParserConfigurationException , SAXException ; 55 56 63 public void release(SAXParser parser, Map features, Map properties, boolean useLexicalHandler); 64 } 65 | Popular Tags |