151152153154155156157158159160161
try { try { parser = JAXPUtils.getParser(); } catch (BuildException e) { parser = new XMLReaderAdapter(JAXPUtils.getXMLReader()); } String uri = fu.toURI(buildFile.getAbsolutePath()); inputStream = new FileInputStream(buildFile);
71727374757677
/** * @deprecated */ public org.xml.sax.Parser getParser() throws SAXException { return new XMLReaderAdapter(reader); }
86878889909192
77787980818283
/** @deprecated */ public org.xml.sax.Parser getParser() throws SAXException { // maybe we should throw an UnsupportedOperationException, // rather than doing a trick like this. return new XMLReaderAdapter(getXMLReader()); }
88899091929394