net.sourceforge.pmd.lang.xml.XmlParser Maven / Gradle / Ivy
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.xml;
import net.sourceforge.pmd.lang.ast.ParseException;
import net.sourceforge.pmd.lang.ast.Parser;
import net.sourceforge.pmd.lang.xml.ast.internal.XmlParserImpl;
import net.sourceforge.pmd.lang.xml.ast.internal.XmlParserImpl.RootXmlNode;
/**
* Adapter for the XmlParser.
*/
class XmlParser implements Parser {
@Override
public RootXmlNode parse(ParserTask task) throws ParseException {
return new XmlParserImpl().parse(task);
}
}